@import url('https://fonts.googleapis.com/css2?family=Sarabun:wght@300;400;600&display=swap');

body {
    font-family: 'Sarabun', sans-serif;
    background-color: #f8f9fa;
}

.bg-gradient-pink {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
}

.card-login {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.btn-pink {
    background-color: #ff6b81;
    color: white;
    border: none;
    transition: 0.3s;
}

.btn-pink:hover {
    background-color: #ff4757;
    color: white;
}

.subject-card {
    border-radius: 10px;
    transition: transform 0.2s;
    background: white;
    border-left: 5px solid #ff6b81;
}

.subject-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-card img {
    height: 200px;
    object-fit: cover;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #ff6b81;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(255, 107, 129, 0.4);
}