body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100svh;
    background: #f4f4f4;
    margin:0;
    color: #111;
}

.title {
    margin-bottom: 5px;
    font-size: 32px;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 50px;
    text-align: center;
}

.smartschool-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
    box-sizing: border-box; 
    justify-content: center;
    flex-wrap: wrap;
    background: #FF520E;
    border: 1px solid transparent;
    color: white;
    padding: 5px 8px;
    font-weight:bold;
    font-family: "Open Sans", sans-serif;
}

.smartschool-btn:hover {
    opacity: 0.9;
    border: 1px solid transparent !important;
}


@media (max-width: 375px) {
    .login-btn {
        width: 100%;
        max-width: 320px;
    }

    .smartschool-btn {
        padding: 8px 10px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        font-size:12px;
    }
}
