.centered-form-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
}

.form-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    width: 100%;
    max-width: 450px;
    padding: 1.5rem;
    animation: slideUp 0.8s ease-out;
}

.register-header {
    text-align: center;
    margin-bottom: 1rem;
}

.register-header h2 {
    color: white;
    font-weight: 700;
    margin-bottom: 0;
    font-size: 1.5rem;
}

.register-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.form-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.form-group {
    margin-bottom: 0.75rem;
}

.form-control {
    height: 45px;
    padding: 0.5rem 0.5rem 0.5rem 2.5rem;
    font-size: 0.9rem;
}

.logo-container {
    width: 120px !important;
    height: 60px !important;
    margin-bottom: 0.75rem !important;
}

.btn-login {
    padding: 0.6rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.input-icon {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 0.5rem;
    }
}