@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");

body {
    background: black;
    font-family: monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    color: white;
}

.form_container {
    margin-top: 80px;
    background: #111;
    padding: 40px;
    border-radius: 14px;
    width: 100%;
    max-width: 380px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


h1 {
    text-align: center;
    margin-bottom: 20px;
    color: rgb(177, 165, 142);
}

label {
    font-size: 14px;
    color: #aaa;
}

input {
    padding: 12px;
    background: transparent;
    border: 2px solid #333;
    border-radius: 8px;
    color: white;
}

input:focus {
    outline: none;
    border-color: rgb(25, 122, 41);
}

.btn {
    margin-top: 10px;
    background: rgb(29, 77, 33);
    border: none;
    cursor: pointer;
    transition: .3s;
}

.btn:hover {
    background: rgb(39, 88, 43);
}

.login_link {
    text-align: center;
    font-size: 13px;
    color: #777;
}

.login_link a {
    color: rgb(25, 122, 41);
    text-decoration: none;
}


.footer_bottom{
    margin-top: 40px;
}