/* register.css */

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2; /* Using fourth-color from the palette */
}

header {
    background: linear-gradient(to bottom right, #222831, #506f86); /* Gradient between first-color and second-color */
    color: #fff;
    text-align: center;
    padding: 30px;
    position: relative;
}

/* Logo Styles */
#logo-container {
    position: absolute;
    top: 25px;
    left: 20px;
}

#logo-container img {
    width: 200px; /* Adjust the width as needed */
    height: auto;
}

#logo-container p {
    margin: 15px; /* Adjust the margin as needed */
    line-height: 0;
    font-size: 18px; 
    font-family: 'Times New Roman', Times, serif;
    color: #fff; /* Text color */
}

nav {
    background-color: #393e46; /* Using second-color from the palette */
}

nav ul {
    list-style: none;
    padding: 20px;
    margin: 15px;
    display: flex;
    justify-content: center;
}

nav a {
    text-decoration: none;
    color: #fff;
    padding: 15px;
}

#register {
    padding: 20px;
    text-align: center;
}

#register-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
    display: grid;
    gap: 15px;
}

label {
    font-weight: bold;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #4a69bb;
    color: #fff;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #6b8cce;
}
