.email-login-section {
    padding: 100px 20px;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.email-login-content {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.email-login-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px) saturate(180%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 450px;
    width: 100%;
}

.email-login-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 123, 255, 0.5);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.3);
}

.email-login-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: transform 0.3s ease;
    color: white;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.email-login-card:hover .email-login-icon {
    transform: scale(1.1) rotate(5deg);
}

.email-login-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.email-login-description {
    color: #b0b0b0;
    margin-bottom: 25px;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    line-height: 1.5;
}

.email-login-form {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    display: block;
    color: #b0b0b0;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px 15px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Unbounded', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: #007bff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.3);
}

.form-input::placeholder {
    color: #888;
}

.email-login-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    z-index: 2;
    width: 100%;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    font-family: 'Unbounded', sans-serif;
}

.email-login-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5);
    color: white;
}

.email-login-btn:active {
    transform: translateY(-1px);
}

.email-login-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.email-login-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 15px;
    text-align: left;
}

.email-login-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.field-label {
    color: #b0b0b0;
    font-weight: 600;
    font-size: 0.9rem;
}

.field-value {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    word-break: break-all;
    text-align: right;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .email-login-card {
        padding: 30px 25px;
        max-width: 400px;
    }
    
    .email-login-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .email-login-title {
        font-size: 1.6rem;
    }
    
    .email-login-field {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .field-value {
        margin-left: 0;
        margin-top: 5px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .email-login-card {
        padding: 25px 20px;
    }
    
    .email-login-info {
        padding: 12px;
    }
    
    .email-login-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .form-input {
        padding: 10px 12px;
    }
}

.email-login-info.mail-server-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.email-login-info.mail-server-info.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 123, 255, 0.3);
}

.server-info-toggle {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.server-info-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

.server-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.server-info-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.server-info-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
}

.email-login-info.mail-server-info.active .server-info-icon {
    transform: rotate(180deg);
    background: rgba(0, 123, 255, 0.2);
}

.server-info-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.2);
}

.email-login-info.mail-server-info.active .server-info-content {
    max-height: 500px;
}

.server-info-items {
    padding: 0 20px 20px;
    animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.server-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.server-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-label {
    color: #b0b0b0;
    font-weight: 600;
    font-size: 0.9rem;
}

.info-value {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    word-break: break-all;
    text-align: right;
    margin-left: 10px;
    font-family: 'Courier New', monospace;
}

@media (max-width: 768px) {
    .server-info-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-value {
        margin-left: 0;
        margin-top: 5px;
        text-align: left;
    }
}