body 
{
    font-family: Arial, sans-serif;
}

.containerl 
{
    width: 350px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.logo 
{
    width: 100px;
    margin-bottom: 20px;
}

.testoh2 
{
    color: brown;
    font-size: 24px;
}

form label 
{
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
    text-align: left;
}

form input[type="text"],
form input[type="email"],
form input[type="password"] 
{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.action-buttons 
{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.register-btn, .cancel-btn 
{
    width: 48%;
    padding: 10px;
    background-color: #8B4513; 
    color: white;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.register-btn:hover, .cancel-btn:hover 
{
    background-color: #654321;
}

.links {
    margin-top: 20px;
}

.links a 
{
    color: #064b26;
    text-decoration: none;
    font-size: 14px;
}

.links a:hover 
{
    text-decoration: underline;
}

.login-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}

.login-icon i {
    margin-right: 5px;
}



