body {
    background: #0A0A0A;
    font-family: "Montserrat";
}

p {
    margin: 0;
}

.container {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #0D0D0D;
    width: 400px;
    padding: 36px 12px;
}

.header {
    width: 100%;
}

.logo {
    position: relative;
    transform: translateX(-50%);
    left: 50%;
}

.title {
    color: #FFF;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-top: 6px;
}

.forgot {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    color: #AE3739;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 8px;
    cursor: pointer;
}

.input_element {
    position: relative;
    transform: translateX(-50%);
    left: 50%;
    width: 370px;
    margin-top: 42px;
}

.input_element input {
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
    width: 344px;
    height: 48px;
    font-family: "Montserrat";
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 500;
    padding: 0 12px;
}

.label {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 8px;
}

.captcha {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.submit {
    position: relative;
    transform: translateX(-50%);
    outline: none;
    border: none;
    left: 50%;
    width: 370px;
    margin-top: 20px;
    height: 52px;
    border-radius: 6px;
    background: #353535;
    font-family: "Montserrat";
    font-size: 14px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: all 60ms;
}

.submit:hover {
    background: #FFF;
    color: #0D0D0D;
}


.paragraph {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    font-size: 13px;
    font-weight: 400;
}

a {
    color: #FFF;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}

@media screen and (max-width: 700px) {
    body {
        background: #0D0D0D;
    }
    
    .container {
        position: absolute;
        border: 1px solid rgba(255, 255, 255, 0.00);
        background: #0D0D0D;
        width: 100%;
        padding: 0px 0px;
    }
}