/* 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: 80vh;
    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;
    margin-bottom: 15px;
}

.regLogRes-form button {
    background-color: #4e4949;
    color: #dadbde;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.5s ease;
    text-align: center;
}

.regLogRes-form button:hover {
    background-color: #333;
}

.regLogRes-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.regLogRes-actions form {
    display: grid;
    width: 100%;
}

.regLogRes-actions form:nth-last-child() {
    margin-left: 10px;
}

.regLogRes-actions form:first-child {
    margin-right: 10px;
}

.regLogRes-actions button {
    width: 100%;
}