@charset "UTF-8";

* {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

input {
    border: solid 1px black;
    text-indent: 10px;
    border-color: white;
    height: 35px;
    width: 250px;
    border-radius: 15px;
    display: grid;
    margin: 15px;
    background-color: black;
    color: white;
}

input:focus {
    outline-color: rgb(92, 92, 92);
}

::placeholder {
    color: white;
}

button {
    color: white;
    height: 35px;
    width: 250px;
    border-radius: 15px;
    border-width: 0;
    background-image: linear-gradient(to right, #320735, #AB0037);
}

button:hover {
    cursor: pointer;
    background-image: linear-gradient(to right, #480d4d, #b10139);
}

.alt {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin: 16px;
}

.alt > a {
    color: wheat;
    text-decoration: none;
}

.alt > a:hover {
    color: gray;
    text-decoration: underline;
}