.reset-page {
    min-height: calc(100vh - 70px);
    width: 100%;
    background-image: url("/images/login_background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;      
    justify-content: center;  
    padding: 20px;
}

.reset-wrapper {
    width: 100%;
    max-width: 420px;
    padding: 15px;
}

.reset-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.reset-icon {
    font-size: 56px;
    color: #085aac;
}

.reset-title {
    font-weight: 700;
    margin-top: 10px;
}

.reset-subtitle {
    color: #6c757d;
    font-size: 1rem;
}

.form-control {
    height: 48px;
    border-radius: 10px;
}

.reset-btn {
    height: 48px;
    border-radius: 10px;
    font-weight: 600;
    background-color: #085aac;
    border: none;
}

.reset-btn:hover,
.reset-btn:focus,
.reset-btn:active {
    background-color: #085aac;
    color: #ffffff;
    border: none;
    box-shadow: none;
}

.invalid-feedback {
    font-size: 14px;
}

.back-home-link {
    color: #085aac;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.back-home-link:hover {
    color: #064a8d;
    text-decoration: underline;
}

@media(max-width: 576px) {
    .reset-card {
        padding: 25px 20px;
    }
}