body {
    padding-top: 100px;
    background: #fff;
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 40px;
}
.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 350px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideIn 0.3s ease-out;
}
.alert.error {
    background: #fef2f2;
    color: #dc2626;
    border-color: #fecaca;
}
.alert.success {
    background: #ecfdf5;
    color: #059669;
    border-color: #a7f3d0;
}
.alert .close-btn {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.2rem;
    margin-left: auto;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}
.alert .close-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}
.login-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}
.form-group {
    background: #fff;
    border: 2px solid #B0B0B0;
    border-radius: 18px;
    display: flex;
    align-items: center;
    padding: 0.7rem 1.2rem;
    margin-bottom: 1.2rem;
    position: relative;
}
.form-group svg.icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-right: 1rem;
    color: #222;
}
.form-group input {
    border: none;
    outline: none;
    font-size: 1.1rem;
    width: 100%;
    background: transparent;
}
.form-group input[type="email"] {
    font-weight: 700;
    color: #222;
}

.form-group textarea {
    background-color: white;
    border: 0;
    width: 100%;
    resize: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: bold;
}

.form-group textarea:focus {
    outline: none;      
    border: none;
}

.form-group select {
    width: 100%;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: bold;
    background-color: white;
}

.form-group.form-group-select {

}

.form-group.form-group-select select {
    appearance: none;          /* Standard */
  -webkit-appearance: none;  /* Safari/Chrome */
  -moz-appearance: none;
}

.form-group input::placeholder {
    color: #888;
    font-weight: 400;
}
.form-group .icon-right {
    margin-left: 1rem;
    display: flex;
    align-items: center;
    min-width: 24px;
    min-height: 24px;
}
.form-group .icon-right svg {
    width: 24px;
    height: 24px;
}
.form-group .icon-right .check {
    color: #19c37d;
}
.form-group .icon-right .cross {
    color: #e11d48;
}
.form-group .icon-right .eye {
    color: #888;
    cursor: pointer;
}
.forgot-password {
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #222;
}
.forgot-password a {
    color: #0057FF;
    text-decoration: none;
    font-weight: 500;
    margin-left: 0.2rem;
}
.forgot-password a:hover {
    text-decoration: underline;
}
.login-btn {
    width: 100%;
    padding: 1.2rem 0;
    color: #fff;
    border: none;
    border-radius: 18px;
    font-size: 1.4rem;
    cursor: pointer;
    margin-top: 0.5rem;
}

.login-consent-msg {
    justify-self: end;
    text-align: center;
    max-width: 550px;
    font-size: 12px;
    color: #B0B0B0;
}

.page-success {
    text-align: center;
    background-image: url(/static/images/success-bg.svg);
    background-size: cover;
}

.page-success .card-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-success .logo-container {
    display: none;
}

.page-success .icon-circle {
    width: 240px;
    height: 240px;
    background-color: #FFEA9F;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    font-size: 100px;
}

.page-success .card-title {
    font-size: 42px;
    line-height: 1.1;
}

.page-success .card-text {
    font-size: 17px;
}