/* RegLogRes Container */

.form-label {
    font-size: 1.5em;
    color: #333;
    font-weight: bold;
}

.regLogRes-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: #333;
}

.regLogRes-form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

.regLogRes-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

.regLogRes-form input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.regLogRes-form button {
    background-color: var(--accent2);
    color: white;
    font-weight: bold;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.5s ease;
    text-align: center;
    margin-top: 10%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}