html,body {
    height:100%;
    width:100%;
    margin:0;
}

body {
    background-color: #4c4a4f;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    background: none;
}

/* Guest section styling */
.guest-section, .login-box {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    border-radius: 15px;
    padding: 2rem 2rem 2.5rem 2rem;
    border: 1.5px solid #646469;
    box-shadow: 0 2px 12px rgba(100,100,105,0.08);
}

.guest-section h2, .login-box h1 {
    color: #cb4900;
    margin: 0 0 10px 0;
    font-size: 1.7rem;
    font-weight: 800;
}

.guest-section p {
    color: #333;
    margin: 0 0 20px 0;
    font-size: 0.95rem;
}

.guest-section form {
    display: flex;
    justify-content: center;
    width: 100%;
}

.guest-button {
    background-color: #cb4900 !important;
    color: white !important;
    border: none !important;
    padding: 15px 30px !important;
    border-radius: 8px !important;
    font-size: 1.1rem !important;
    font-weight: bold !important;
    cursor: pointer !important;
    max-width: 350px;
    width: 80%;
    transition: background-color 0.3s !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.guest-button:hover {
    background-color: #a33a00 !important;
}

/* Divider styling */
.divider {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 0 0.5rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #646469;
}

.divider span {
    color: #646469;
    padding: 0 15px;
    font-size: 0.9rem;
}

.login-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
    background-color: #fff;
    color: #232323;
    padding: 3rem 2rem 2.5rem 2rem;
    width: 100%;
    margin: auto;
    box-sizing: border-box;
    box-shadow: 0 2px 12px rgba(100,100,105,0.08);
    border: 1.5px solid #646469;
}

.login-box h1 {
    color: #cb4900;
}

form + form{
    display:flex;
    justify-content:center;
    width:100%;
}

input{
    margin:2vh;
    padding:0.5rem;
    border-radius:10px;
    width:100%;
    border: 1.5px solid #646469;
    color:#232323;
    background: #fff;
    padding:1.5vh 1vh;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus {
    border-color: #cb4900;
    box-shadow: 0 0 0 2px #cb490033;
    outline: none;
}

button{
    align-self: center;
    border-radius:8px;
    margin:2vh;
    padding:1rem;
    width:50%;
    background-color: #cb4900;
    color:white;
    border-width: 0;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s;
}

button:hover{
    cursor:pointer;
    background-color: #a33a00;
}

a{
    margin-top:1vh;
    color:#cb4900;
    text-decoration:none;
}
