/*
Custom CSS for TemplateMo 561 Purple Buzz

https://templatemo.com/tm-561-purple-buzz

*/


/* Auth Page */
.auth-card {
    width: 100%;
    max-width: 400px;
    padding: 35px;
    border-radius: 15px;
    background: #fff;
}

/* Icon */
.auth-icon {
    font-size: 60px;
    color: #0d6efd;
}

/* Inputs */
.custom-input {
    border-radius: 30px;
    padding: 12px 18px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 8px rgba(13, 110, 253, 0.2);
}

/* Button */
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 576px) {
    .auth-card {
        padding: 25px;
    }
}