body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Jost', sans-serif;
    background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e); /* Sets the colours for gradient to float between */
}

.homepage {
    width: 350px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 5px 20px 50px #000;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
}

.greeting {
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: bold;
}

.login {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

input {
    width: 80%;
    background: #e0dede;
    margin: 10px auto;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 5px;
}

button {
    width: 80%;
    height: 40px;
    margin: 10px auto;
    color: #fff;
    background: #573b8a;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s ease-in;
}

button:hover {
    background: #6d44b8;
}

.register-link {
    margin-top: 15px;
    font-size: 0.9em;
    color: #ddd;
}

.register-link a {
    color: #57a1ff;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline; /* Pretty self explanitory but underlines links if hovered over */
}