@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(to right, #4e34b6, #1ac6f5);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

.login_form {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 400px;
    max-width: 100%;
}

.container {
    max-width: 100%;
}

h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    color: #272346;
}

.login-form input {
    outline: none;
    margin-bottom: 15px;
    font-stretch: 16px;
    color: #999;
    text-align: left;
    padding: 14px 20px;
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
    border: none;
    background: #f7fafc;
    border-radius: 5px;
    transition: 0.3s ease;
}

.login-form input:focus {
    background: transparent;
    border: 1px solid #4e34b6;
}

.g-recaptcha {
    margin-bottom: 20px;
}

.btn {
    font-size: 18px;
    color: #fff;
    width: 100%;
    background: #1ac6f5;
    border: none;
    padding: 14px 15px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn:hover {
    background: #08eb6e;
}

.error-message {
    color: #ff3d3d;
    text-align: center;
    margin-bottom: 20px;
}

.account,
.forget-password {
    text-align: center;
    color: #000000;
    font-size: 16px;
    margin-top: 20px;
}

.account a,
.forget-password a {
    color: #4e34b6;
    text-decoration: none;
}

.account a:hover,
.forget-password a:hover {
    text-decoration: underline;
}

@media (max-width: 736px) {
    .login_form {
        width: 100%;
    }
}