* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #000;
    color: #fff;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.header {
    padding: 20px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}

.logo {
    width: 167px;
    height: 45px;
}

.main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    padding: 20px;
}

.login-container {
    background: rgba(0, 0, 0, 0.75);
    border-radius: 4px;
    padding: 60px 68px 40px;
    width: 100%;
    max-width: 450px;
    margin-bottom: 90px;
}

.login-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #fff;
}

.form-group {
    position: relative;
    margin-bottom: 16px;
}

.form-input {
    width: 100%;
    padding: 16px 20px 0;
    height: 50px;
    background: #333;
    border: 0;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    transition: all 0.2s ease;
}

.form-input:focus {
    background: #454545;
    outline: none;
}

.form-label {
    position: absolute;
    top: 50%;
    left: 20px;
    color: #8c8c8c;
    font-size: 16px;
    transform: translateY(-50%);
    transition: all 0.2s ease;
    pointer-events: none;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: 25%;
    font-size: 11px;
    transform: translateY(-100%);
}

.login-button {
    width: 100%;
    padding: 16px;
    background: #e50914;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin: 24px 0 12px;
    transition: background 0.2s;
}

.login-button:hover {
    background: #f40612;
}

.remember-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    color: #b3b3b3;
    font-size: 13px;
}

.remember-me {
    display: flex;
    align-items: center;
    color: #b3b3b3;
}

.checkbox {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    accent-color: #737373;
    cursor: pointer;
}

.help-link {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.2s;
}

.help-link:hover {
    text-decoration: underline;
}

.signup-now {
    color: #737373;
    font-size: 16px;
    margin-top: 16px;
}

.signup-now a {
    color: #fff;
    text-decoration: none;
    margin-left: 4px;
}

.signup-now a:hover {
    text-decoration: underline;
}

.recaptcha {
    font-size: 13px;
    color: #8c8c8c;
    margin-top: 11px;
    line-height: 1.2;
}

.recaptcha a {
    color: #0071eb;
    text-decoration: none;
}

.recaptcha a:hover {
    text-decoration: underline;
}

.footer {
    background: rgba(0, 0, 0, 0.75);
    width: 100%;
    padding: 0;
    margin-top: auto;
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;

}

.footer-content {
    width: 100%;
    padding: 40px 20px;
    color: #bababa;
}


.footer-content p {
    margin-bottom: 30px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    font-size: 13px;
}

.footer-link {
    color: #737373;
    text-decoration: none;
    line-height: 2;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-links-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding: 0;
    margin: 32px 0 24px 0;
    list-style: none;
}
.footer-links-list li {
    margin: 0;
}
.footer-links-list a {
    color: #737373;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
    padding: 4px 8px;
    display: inline-block;
}
.footer-links-list a:hover {
    color: #fff;
    text-decoration: underline;
}
@media (max-width: 740px) {
    .header {
        padding: 20px 20px;
    }

    .logo {
        width: 75px;
        height: 20px;
    }

    .login-container {
        padding: 30px 20px;
        max-width: none;
        background: #000;
        min-height: 100vh;
        margin: 0;
    }

    .main-content {
        align-items: flex-start;
        padding: 0;
    }

    .footer {
        padding: 30px 20px;
        border-top: 1px solid #737373;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-links-list {
        gap: 16px;
    }
}

@media (max-width: 500px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-links-list {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}
.container {
    background: #161616;
    width: 100%;
    padding: 40px 20px;
}
.rights {
    color: #737373;
    font-size: 13px;
    margin-top: 5px;
    text-align: center;
}

