/* Center the form container vertically */
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* Container tweaks */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Form styling */
form.form-control {
    border-radius: 10px;
    padding: 2rem;
    background-color: #ffffff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
                rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

/* Input spacing */
form.form-control .form-control {
    margin-bottom: 1rem;
}

/* Button styling */
.btn-success {
    font-weight: 600;
    border-radius: 5px;
}

/* Links */
form p a {
    text-decoration: none;
    color: #007bff;
}

form p a:hover {
    text-decoration: underline;
}

/* Toast overrides */
.toast {
    min-width: 250px;
    border-radius: 8px;
    padding: 0.75rem;
    font-weight: 500;
}

/* Icon spacing */
form i.fa {
    display: block;
    margin-bottom: 0.5rem;
}
