* {
    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 {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    background-color: #FFF;
    padding: 35px;
}

.logo {
    text-align: center;
    margin: 0 auto;
    width: 40%;
}

.sub-text {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.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: 5px !important;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    text-decoration: none;
}

#backToLoginLink {
    display: inline-block;
    text-align: center;
    width: 100%;
    margin: 25px 0 5px 0;
    color: #000;
}

body.entry .form-group label {
    padding-bottom: 5px;
    display: inline-block;
    font-weight: 500;
}

@media (max-width:575px){
   .container {
        width: 85%;
        max-width: 470px !important;
        min-width: 320px !important;
    }
}

@media (min-width:576px){
    .container {
        width: 80%;
        max-width: 450px !important;
    }
}