@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");


body {
    background: #000;
    font-family: monospace;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

h1{
    text-align: center;
    color: antiquewhite;
}

.greeting{
    color: #696767;
    text-align: center;
}

.form_container {
    background: #111;
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 350px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    color: #aaa;
    font-size: 14px;
}

input {
    padding: 12px;
    background: transparent;
    border: 2px solid #333;
    color: white;
    border-radius: 8px;
    font-size: 14px;
}

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);
}

a{
    color:white;
    text-decoration: none;
    text-align: center;
}
a:hover{
    color: rgb(25, 122, 41);
}

.footer_bottom {
    border-top: 1px solid rgb(50, 50, 50);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer_bottom p {
    font-size: 13px;
    color: rgb(140, 140, 140);
}

