/* Reset some default styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #144172, #3a88db);
}

.login-container {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    width: 350px;
    text-align: center;
}

.login-container h2 {
    margin-bottom: 25px;
    color: #333;
    font-size: 24px;
}

.login-container form {
    display: flex;
    flex-direction: column;
}

.login-container input {
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.login-container button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #144172;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-container button:hover {
    background: #3a88db;
}

.login-container a {
    margin-top: 10px;
    display: inline-block;
    color: #4facfe;
    text-decoration: none;
    font-size: 14px;
}

.login-container a:hover {
    text-decoration: underline;
}

.login-logo {
    width: 120px;
    /* adjust size */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/* 📱 Mobile styles */
@media (max-width: 600px) {
    body {
        justify-content: center;
        align-items: stretch;
        padding: 0;
        background: linear-gradient(to bottom, #144172, #3a88db);
    }

    .login-container {
        width: 100%;
        height: 100vh;
        /* Take full screen height */
        border-radius: 0;
        /* Remove rounded corners */
        box-shadow: none;
        /* Remove shadow */
        padding: 60px 25px;
        /* More breathing room */
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .login-logo {
        width: 150px;
        margin-bottom: 30px;
    }

    .login-container h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .login-container input {
        font-size: 18px;
        padding: 15px;
    }

    .login-container button {
        font-size: 18px;
        padding: 16px;
    }

    .login-container a {
        font-size: 16px;
    }
}