* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/school.jpg') no-repeat center center/cover;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #001f4d, #003366);
    opacity: 0.85;
    z-index: 1;
}

.content-box {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    width: 90%;
    padding: 40px 30px;

    background: rgb(255, 255, 255);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    width: 170px;
    height: auto;
}

.logo h3 {
    color: #222222;
    font-size: 20px;
    margin-top: 10px;
    font-family: latosemibold;
}

.jsw-logo {
    width: 170px !important;

}

h1 {
    color: #222222;
    font-size: 32px;
    margin-bottom: 15px;
}

p {
    color: #222222;
    font-size: 16px;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(to right, #28a745, #1e7e34);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

}

.btn:hover {
    transform: scale(1.05);
    background: linear-gradient(to right, #34d058, #28a745);
}

.note {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    color: #222222;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* 📱 Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }

    .btn {
        font-size: 16px;
        padding: 12px 20px;
    }

    .logo img {
        width: 90px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }

}

@media (max-width: 320px) {
    .btn {
        font-size: 14px;
        padding: 10px 16px;
    }
}