.min-vh-75 {
    min-height: 75vh;
}

.text-gradient {
    background: linear-gradient(135deg, #FF2D95 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.form-control:focus {
    border-color: #FF2D95;
    box-shadow: 0 0 0 0.2rem rgba(255, 45, 149, 0.25);
}

.btn-register {
    background: linear-gradient(135deg, #FF2D95 0%, #FF6B35 100%) !important;
    border: none !important;
    color: white !important;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: linear-gradient(135deg, #e6297f 0%, #e65f2e 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(255, 45, 149, 0.3) !important;
}

.btn-register:active,
.btn-register:focus {
    background: linear-gradient(135deg, #cc2570 0%, #cc5528 100%) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 45, 149, 0.5) !important;
}

.btn-outline-secondary {
    border-width: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: #f8f9fa;
    border-color: #FF2D95;
    color: #FF2D95;
}

/* Password requirements list styling */
#min-length.text-success,
#use-upper-lower.text-success,
#use-number.text-success,
#use-unique-character.text-success {
    color: #28a745 !important;
}