/* assets/css/style-login.css */

body {
    background-color: #0f0f0f; /* ดำสนิท */
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
}

.login-box {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.1); /* แสงเขียวจางๆ */
    width: 100%;
    max-width: 400px;
    border: 1px solid #333;
}

.form-control {
    background-color: #2b2b2b;
    border: 1px solid #444;
    color: white;
}

.form-control:focus {
    background-color: #333;
    color: white;
    border-color: #00ff7f;
    box-shadow: 0 0 0 0.25rem rgba(0, 255, 127, 0.25);
}

.form-control::placeholder {
    color: #888;
}

/* ปุ่ม Login สีเขียว */
.btn-game {
    background-color: #00c853; 
    color: white;
    border: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-game:hover {
    background-color: #00e676;
    color: black;
    transform: translateY(-2px);
}

/* ปุ่ม Google สีแดง */
.btn-google {
    background-color: #db4437;
    color: white;
    border: none;
    font-weight: bold;
    transition: 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-google:hover {
    background-color: #c53929;
    color: white;
    transform: translateY(-2px);
}

/* เส้นขีดคั่นกลาง */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #666;
    margin: 20px 0;
    font-size: 0.8rem;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #333;
}

.divider:not(:empty)::before { margin-right: .5em; }
.divider:not(:empty)::after { margin-left: .5em; }

/* Alert Box */
.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    color: #ff6b6b;
}