/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Container */
.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.login-form--tall {
    min-height: 240px;
}

/* Logo */
.logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 100%;
    height: auto;
}

/* Footer */
.content-footer {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: transparent;
    color: white;
}

.content-footer .terms {
    color: white;
    text-decoration: none;
}

.content-footer .terms:hover {
    text-decoration: underline;
}

.form-footer {
    justify-content: space-between;
    color: white;
}

.text-right {
    text-align: right;
}

/* Forgot password link */
.forgot-password {
    text-decoration: none;
}

/* Form control */
.form-group {
    display: flex;
    flex-direction: column;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.btn {
    color: white;
}
