* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures padding and border are included in element's total width and height */
}

header {
    display: flex;
    justify-content: space-between;
   
    height: 80px;
    
    background: rgb(59, 105, 197)
}

#nav-links {
    display: flex;
    gap: 1rem;
    list-style: none; /* Removes bullet points */
    font-size: 1.5rem;
    
}

a {
    text-decoration: none; /* Removes underline from links */    
}

a:hover {
    text-decoration: underline;
}

nav {
    
    display: flex;
    justify-content: center;
    align-items: end;
    margin: 15px
}

#logo {
    font-size: 3.5rem;
    padding-left: 5px;
    margin: 10px;
}

body {
    overflow: hidden; /* Prevents scrolling */
    display: flex;
    flex-direction: column; /* Allows stacking of header and main content vertically */
    height: 100vh; /* Full viewport height */
    width: 100vw;
}

main {
    flex: 1; /* Takes up remaining space after header */
    display: flex;
    justify-content: center;
    align-items: center;   
}

.input-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem; /* Space between input and button */
    width: 100%; /* Full width of the parent container */
    max-width: 400px; /* Optional: limits the width of the form */
    background-color: rgb(156, 215, 240);
    padding: 20px; /* Adds padding inside the form */
    border-radius: 10px; /* Optional: rounds the corners of the form */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow for depth */
    display: none;
}

.input-form.active {
    display: flex;
}

.input-form button {
    width: 100%; /* Full width of the parent container */
    max-width: 300px; /* Optional: limits the width of the button */
    padding: 5px; /* Adds padding inside the button */
    background-color: rgb(59, 105, 197); /* Button background color */
    color: white; /* Button text color */
    border: none; /* Removes default border */
    border-radius: 5px; /* Rounds the corners of the button */
    cursor: pointer; /* Changes cursor to pointer on hover */
    margin: 5px 0;;
}

.form-group {
    padding: 5px 0;    
    display: flex;
    justify-content: space-between;    
  
}

form {
    width: 80%;
}

.register-text {
    margin-top: 10px;;
}

