.login-container {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 100%;
    background: #181A20;
}

.login-card {
    background: #181A20;
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    width: 100%;
}

.login-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.login-label {
    color: #707070;
    font-size: 14px;
    text-align: left;
    display: block;
    margin-bottom: 0px;
}

.login-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.login-input {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: 0.5px solid #707070;
    background: #181A20;
    color: white;
    outline: none;
    transition: 0.3s;
    font-size: 14px;
}

.login-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.login-input:focus {
    border: 1px solid #FFCA00;
}

.login-btn {
    width: 100%;
    padding: 15px;
    border-radius: 4px;
    border: none;
    font-size: 16px;
    font-weight: normal;
    cursor: pointer;
    transition: 0.3s;
}

.login-submit {
    background: #FFCA00;
    color: black;
}

.login-bottom {
    position: relative;
    margin-top: 20px;
    text-align: center;
    width: 100%;
    padding: 30px;
}

.login-register {
    background: none;
    border: 1px solid #FFCA00;
    color: #FFCA00;
    margin-top: 15px;
    padding: 15px;
    padding-right: 10px;
    width: 100%;
}

.login-forgot {
    color: #FFCA00;
    font-size: 14px;
    text-decoration: none;
    display: block;
    float: right;
    margin-top: 20px;
    padding-right: 10px;
}
