﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f8fb;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.container {
    background-color: #fff;
    width: 460px;
    padding: 48px 40px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.logo {
    text-align: center;
    margin-bottom: 24px;
    
}

    .logo span {
        font-size: 30px;
        font-weight: bold;
        color: #006f94;
    }

h2 {
    text-align: center;
    font-size: 26px;
    font-weight: normal;
    margin-bottom: 8px;
}

.subtext {
    text-align: center;
    font-size: 16px;
    color: #444;
    margin-bottom: 24px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.password-container {
    display: flex;
}

    .password-container input {
        flex: 1;
    }

.btn-login {
    width: 100%;
    padding: 14px;
    background-color: #007ea7;
    border: none;
    border-radius: 30px;
    color: #fff;
    font-size: 20px;
    margin-bottom: 16px;
    cursor: pointer;
}

.remember-forgot {
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

    .remember-forgot a {
        color: #007ea7;
        text-decoration: none;
    }

.signup-section {
    text-align: center;
    margin-top: 12px;
}

    .signup-section p {
        margin-bottom: 10px;
        color: #666;
    }

.btn-signup {
    width: 100%;
    padding: 14px;
    border: 2px solid #007ea7;
    background-color: #fff;
    border-radius: 30px;
    color: #007ea7;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
}

.footer {
    margin-top: 32px;
    text-align: center;
    font-size: 13px;
    color: #888;
}

    .footer a {
        color: #007ea7;
        text-decoration: none;
        margin: 0 6px;
    }
