.information-list{
    background-color: #F6F7FE;
    border-radius: 18px;
    text-align: left;
    padding: 30px;
    margin-top: 20px;

}
.i-img-flex{
    display: flex;
    align-items: center;
}
.i-img-div{
    display: flex;
    align-items: center;
}
.i-img-div img{
    width: 70%;
}
.i-img-title{
    padding-top: 5px;
    font-weight: 600;
}
.i-info{
    margin-top: 10px;
    margin-left: 30px;
}


.subtitle {
    color: #4a5568;
    margin-bottom: 2rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}
.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}
.form-group input::placeholder {
    color: #a0aec0;
}
.help-text {
    font-size: 0.875rem;
    color: #718096;
    margin-top: 0.25rem;
}
.verification-group {
    position: relative;
}
.verification-code {
    position: absolute;
    right: 1rem;
    top: 70%;
    transform: translateY(-50%);
    background-color: white;
    color: #355EFC;
    padding: 0.2rem 0.7rem;
    border-radius: 4px;
    font-weight: 600;
    font-family: monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #355EFC;
}

.verification-code:hover {
    background-color: #e0e8ff;
    color: #1a4a90;
    transform: translateY(-50%) scale(1.05);
}
.confirm-btn {
    background-color: #355EFC;
    color: white;
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.confirm-btn:hover {
    background-color: #2b6cb0;
}
/* Custom Alert Styles - Enhanced */
.custom-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(4px);
}
.alert-content {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
    position: relative;
    transform: scale(0.95);
    opacity: 0;
    animation: alertShow 0.3s ease forwards;
}
@keyframes alertShow {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.alert-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}
.alert-title {
    color: #c53030;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: 'Arial', sans-serif;
}
.alert-message {
    color: #742a2a;
}
/* Success Alert Styles */
.alert-content.success {
    border-top: 4px solid #355EFC;
}
.alert-icon.success {
    background: linear-gradient(135deg, #355EFC 0%, #2545D1 100%);
    box-shadow: 0 4px 12px rgba(53, 94, 252, 0.3);
}
.alert-title.success {
    color: #355EFC;
}
.alert-message.success {
    color: #2545D1;
}
.alert-close.success {
    background-color: #355EFC;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}
.alert-close.success:hover {
    background-color: #2545D1;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(53, 94, 252, 0.3);
}

/* Success Alert Styles */
.alert-content.success {
    border-top: 4px solid #355EFC;
}
.alert-icon.success {
    background: linear-gradient(135deg, #355EFC 0%, #2545D1 100%);
    box-shadow: 0 4px 12px rgba(53, 94, 252, 0.3);
}
.alert-title.success {
    color: #355EFC;
}
.alert-message.success {
    color: #2545D1;
}
.alert-close.success {
    background-color: #355EFC;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}
.alert-close.success:hover {
    background-color: #2545D1;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(53, 94, 252, 0.3);
}

.alert-close {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.2);
    outline: none;
}
.alert-close:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(229, 62, 62, 0.3);
}
.alert-close:active {
    transform: translateY(0);
}