* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

body {
    background: linear-gradient(135deg, #baecc9 0%, #ebeda2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.logo {
    max-width: 140px;
    height: auto;
}

.login-container {
    background-color: #ffffff;
    width: 100%;
    padding: 80px 70px;
    border-radius: 40px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.welcome-text {
    margin-left: -70px;
    margin-right: -70px;
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 5px;
    text-align: center;
}

.subtitle {
    margin-left: -70px;
    margin-right: -70px;
    display: block;
    font-weight: 700;
    font-size: 24px;
    line-height: 39px;
    letter-spacing: 0%;
    text-align: center;
    color: #00B26B;
    margin-bottom: 45px;
}

form {
    text-align: left;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 10px;
    margin-left: 5px;
}

.input-group input {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    border: 1px solid #d1d1d1;
    border-radius: 12px;
    font-size: 15px;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    border-color: #00b16a;
}

.input-group input::placeholder {
    color: #999;
}

.forgot-password {
    text-align: right;
    margin-bottom: 25px;
}

.forgot-password a {
    font-size: 15px;
    font-weight: 600;
    color: #00b16a;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    height: 65px;
    background-color: #00b16a;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #000000;
    color: #ffffff;
}

footer {
    margin-top: 20px;
    text-align: center;
}

footer p {
    font-size: 12px;
    color: #557a66;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    body {
        align-items: stretch;
        padding: 16px;
    }

    .wrapper {
        max-width: none;
        justify-content: center;
        min-height: calc(100vh - 32px);
        padding: 12px 0;
    }

    .login-container {
        padding: 36px 22px;
        border-radius: 28px;
    }

    .welcome-text,
    .subtitle {
        margin-left: 0;
        margin-right: 0;
    }

    .welcome-text {
        font-size: 24px;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 28px;
    }

    .btn-submit {
        height: 56px;
        font-size: 18px;
    }

    footer {
        margin-top: 16px;
    }

    footer p {
        line-height: 1.4;
    }
}
