body, h1, p, a, input, label {
    margin: 0;
    padding: 0;
    font-family: 'swap', sans-serif;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.logo-box {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 46px;
}
.left-menu {
    display: flex;
    align-items: center;
}


.right-menu {
    display: flex;
    align-items: center;
}

.nav-item {
    cursor: pointer;
    font-size: 24px;
    margin-right: 20px;
}

.text-head {
    color: black;
    text-decoration: none; 
    font-weight: normal;   
    }

.selected {
    color: rgba(0,91,182,1);
    font-weight: bold;
}

main {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 80vh;
}

.mb-4 {
    color: #df0000;
}

.mt-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 18px;
}

#name, #email, #password, #password_confirmation {
    margin-top: 1px;
    font-size: 16px;
    border: 2px solid;
    width: 350px;
    height: 35px;
}

.justify-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 1rem;
}

button {
    font-size: 20px;
    background-color: rgb(255, 0, 0);
    color: white;
    border: none;
    padding: 5px 5px;
    border-radius: 5px;
    cursor: pointer;
}

.text-gray-600 {
    font-size: 14px;
    padding-right: 6px;
}