@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Special+Gothic+Expanded+One&display=swap');

body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #333;
    background: radial-gradient(ellipse at center, #60a8d1 0%, #0783c9 70%);
}

.login-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin-top: 3%;
}

.logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.login-container h2 {
    margin-bottom: 20px;
    color: #e0e0e0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #0783c9;
}

button {
    width: 100%;
    padding: 15px;
    background: #0783c9;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #3195d0;
}

.error {
    color: red;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}

.captcha-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.captcha-group input[type="checkbox"] {
    margin-right: 10px;
}

.captcha-group label {
    font-size: 14px;
    color: #555;
}

.g-recaptcha {
    width:100%;
}

@media (max-width: 600px) {
    .login-container {
        padding: 20px;
        margin: 20px;
        margin-top: 3%;
    }

    .form-group input,
    button {
        padding: 12px;
        font-size: 14px;
    }
}