

:root {
   /* color palette */
   --color-btn    :#2b2b2b;
   --color-bg     :#ffffff;
   --color-1       :#504141;
   --color-2       :#C4C4C4;
   --color-3       :#761F21;
   --color-4       :#ff6923;
   --color-5       :#D91B24;
   --color-6       :#B5240C;
   --color-7       :#2D11E9;
   --color-8       :#F5F5F5;
}

body {
    font-family: Arial, sans-serif;
    background-image: url(../images/howell.jpg);
    background-size: cover;
    color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #f9f8f654;
    backdrop-filter: blur(7px);
    padding: 2rem;
    border-radius: 8px;
    width: 320px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
}

h1 {
    text-align: center;
    margin-bottom: 1rem;
}

form {
    display: flex;
    flex-direction: column;
}

input[type="text"],
input[type="password"],
input[type="email"] {
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 4px;
    background-color: #333;
    color: #eee;
}

button {
    padding: 0.5rem;
    background-color: #ffdf75;
    border: none;
    border-radius: 4px;
    color: #29495a;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #ff6923;
    color: white;
}

.toggle-btn {
    margin: 1rem 0;
    background-color: transparent;
    border: 1px solid #468672;
    color: #B5240C;
}

.toggle-btn:hover {
    background-color: #ff6923;
    color: #fff;
}

.user-type-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.user-type-toggle button {
    flex: 1;
    padding: 0.5rem;
    margin: 0 0.25rem;
    background-color: #333;
    border: none;
    border-radius: 4px;
    color: #eee;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.user-type-toggle button.active,
.user-type-toggle button:hover {
    background-color: #ff6923;
    color: #fff;
}

.error {
    color: #ff4c4c;
    text-align: center;
    margin-bottom: 1rem;
}

.success {
    color: #4caf50;
    text-align: center;
    margin-bottom: 1rem;
}

a {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #ff6923;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #ffdf75;
    
}
