.form {
    box-shadow: 2px 2px 30px rgba(66, 57, 238, .2);
    border-radius: 20px;
}

.flex-column {
    margin-bottom: 20px;
}

.inputForm {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.button-submit {
    width: 100%;
    padding: 2%;
    background-color: #007AFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button-submit:hover {
    background-color: #007AFF;
}

.span {
    color: #007BFF;
    cursor: pointer;
}

.span:hover {
    text-decoration: underline;
}

.btn {
    padding: 10px;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.google {
    background-color: #4285F4;
    color: #fff;
}

.apple {
    background-color: #333;
    color: #fff;
}

.line {
    text-align: center;
    margin: 0;
    color: #999;
}

.heading-model {
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 14px;
    font-family: 'Roboto', sans-serif;
}

.flex-row {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: #f1f1f1;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.btn:hover {
    transform: scale(1.1);
}

.account-status {
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #999;
}

.create-button {
    width: 100%;
    padding: 2%;
    background-color: #fff;
    color: #094E9B;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    border: 2px solid #094E9B;
}

.input-icon {
    position: relative;
    left: 10px;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
    z-index: 1;
    top: 41px;
}

.input {
    width: 100%;
    padding: 2% 9%;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
}

.input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.fixed-form {
    margin: 2%;
}

.icon-model {
    width: 38px;
    height: 38px;
    border-radius: 22px !important;
}

.form-container .fixed-form {
    background-color: #fff;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.over-all {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 2vh;
    box-sizing: border-box;
}

.bg-light {
    width: 100%;
    max-width: 80%;
    max-height: 100vh;
    overflow: auto;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.border10 {
    border-radius: 10px;
}

.h-85 {
    height: 85%;
}

.input {
    width: 100%;
    padding: 10px 35px !important;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

.online-images {
    height: 30px;
    width: 30px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 35px;
    color: #999;
}

.password-hide {
    right: 32px !important;
}


#newSignUpForm {
    border-radius: 10px;
}

.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}