* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
}
.container {
    width: 80%;
    max-width: 1200px;
    display: flex;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin: 65px 0 25px 0;
}
.left-column, .right-column {
    width: 50%;
    padding: 40px;
    background-color: #ffffff;
}
.left-column {
    border-right: 2px solid #f0f0f0;
}
.logo {
    text-align: center;
}
.login-heading, .create-heading {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}
.form-group {
    margin-bottom: 20px;
}
.form-group input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s;
}
.form-group input:focus {
    outline: none;
    border-color: yellow;
}
.form-group .error {
    border-color: red !important;
}
.error-placeholder {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: none; /* Hide by default */
}
.checkbox-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.checkbox-group a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}
.checkbox-group a:hover {
    text-decoration: underline;
}
.login-btn, .create-account-btn {
    width: 100%;
    padding: 10px;
    background-color: #00d0ff;
    color: black;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}
.login-btn:hover, .create-account-btn:hover {
    background-color: #04bbe4;
}
.create-account-btn a {
    color: black;
    text-decoration: none;
}


.btn{
    width: 100%;
    padding: 10px;
    background-color: #00d0ff;
    color: black;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    padding-block: 16px;
    background-color: #5FD5FB;
    margin-top: 15px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    text-decoration: none;
}

.btn-black{
    background-color: #21242b;
    color: white;
}


/* Extra Small devices (landscape phones, 575px and below) */
@media (max-width: 575px) {
    .checkbox-group{
        display: block;
    }

    .checkbox-group div{
        display: block !important;
    }

    .checkbox-group > div:nth-child(2){
        margin-top:10px;
    }

     .checkbox-group div:first-child label{
        padding-bottom: 5px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width:767px){
    .checkbox-group{
        display: block;
    }

    .checkbox-group div{
        display: block !important;
    }

    .checkbox-group > div:nth-child(2){
        margin-top:10px;
    }

     .checkbox-group div:first-child label{
        padding-bottom: 5px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px){
    .checkbox-group{
        display: block;
    }
    
    .checkbox-group div{
        display: block !important;
    }

    .checkbox-group > div:nth-child(2){
        margin-top:10px;
    }

     .checkbox-group div:first-child label{
        padding-bottom: 5px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width:1199px) { 
    .checkbox-group{
        display: flex;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399px){

    
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {



}