/* 登录页面样式 */

body {
    background: #e6faf8;
    min-height: 100vh;
}

.logo-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.card {
    background: white;
    border-radius: 28px !important;
}

.form-control:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

.input-group-text {
    background-color: white;
}

.btn-success {
    background-color: #198754;
    transition: all 0.2s;
}

.btn-success:hover {
    background-color: #0f5c3a;
}

@media (max-width: 768px) {
    .logo-img {
        width: 60px;
        height: 60px;
    }
    
    h1 {
        font-size:2.5rem !important;
    }
    
    .card-body {
        padding: 1.5rem !important;
    }
    
    .input-group-lg .form-control,
    .input-group-lg .input-group-text {
        font-size: 1rem;
    }
    
    .btn-success {
        font-size: 1rem !important;
    }
}