﻿.login-box {
    max-width: 380px;
    width: 100%;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-logo {
    text-align: center;
    margin-bottom: 20px;
}

    .login-logo img {
        max-width: 200px;
        margin-bottom: 10px;
    }

.form-control {
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
}

.btn-login {
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
}

.login-links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 14px;
}
/* สไตล์สำหรับข้อความติดต่อ */
.contact-info {
    text-align: center;
    font-size: 12px;
    color: #555;
    margin-top: 20px;
}

    .contact-info i {
        color: #007bff;
        margin-right: 8px;
    }

    .contact-info a {
        color: #007bff;
        text-decoration: none;
    }

        .contact-info a:hover {
            text-decoration: underline;
        }

    .contact-info strong {
        font-weight: 600;
    }


.psu-login-btn {
    font-size: 16px !important;
    background-color: #EBF5FB;
    transition: background-color 0.3s, box-shadow 0.3s;
}

    .psu-login-btn:hover {
        background-color: #D6EAF8;
        /* สีฟ้า hover เข้มขึ้น */
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
        /* เงาเข้มขึ้น */
        text-decoration: none;
        /* ลบขีดเส้นใต้ลิงก์ */
    }