@font-face {
    font-family: 'PorscheHeEnFont'; /* The name you will use to reference this font */
    src: url('../fonts/Assistant-Regular.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'PorscheHeEnFont', sans-serif; /* Use your custom font in the body */
}


body {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#logo {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 100px; /* Adjust size as needed */
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: fit-content;
}

form h2 {
    margin-bottom: 20px;
}

form div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
    width: 100%;
}

form input {
    width: 250px; /* Adjust width for signup form fields */
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
}

form button {
    width: 100%; /* Full width within the form's container */
    max-width: 250px; /* Adjust width to match input */
    padding: 10px;
    background-color: #C1CACA;
    border: 1px solid black;
    border-radius: 4px;
    cursor: pointer;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    margin-top: 10px; /* Add some margin for spacing */
}

form button:hover {
    background-color: #B0B6B6;
}

form a {
    margin-top: 10px;
    color: #000;
    text-decoration: none;
}

form a:hover {
    text-decoration: underline;
}

.error-message {
    color: red;
    margin-top: 10px;
}

form small {
    margin-top: 5px;
    color: #666;
}

/* Specific styles for the signup form */
.signup-form input {
    width: 250px; /* Adjust width for signup form fields */
}

.signup-form button {
    max-width: 250px; /* Adjust width for signup form button */
}

/* Styles for the home button */
.signup-form .home-button {
    max-width: 250px; /* Adjust width to match input */
    padding: 10px;
    background-color: #C1CACA;
    border: 1px solid black;
    border-radius: 4px;
    cursor: pointer;
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    margin-top: 10px; /* Add some margin for spacing */
}

.signup-form .home-button:hover {
    background-color: #B0B6B6;
}
