.app-name {
    font-size: 5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    float: left; /* This will make the label float left */
}

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

.form-control:focus {
    border-color: #007bff;
}

.error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    width: 100%;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #00408d;
}

.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-decoration-none {
    text-decoration: none;
    color: #007bff;
}

.text-decoration-none:hover {
    text-decoration: underline;
}

.mt-3 {
    margin-top: 15px;
}
