/* Base */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Avenir Next', Arial;
    background: url('Assignment 3 Images/background.jpg');
    background-repeat: no-repeat;
	background-position: center center;
    background-size: cover;
}


/* Creates that dark overlay over the background  */
.vignette {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('Assignment 3 Images/Black Vignette.png');
	background-size: cover;
}


/* Header Navigation */
.header {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%; 
    background-color: rgba(0, 0, 0);
    padding: 15px 40px;
    text-align: right;
}

.header a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    display: inline-block;
}

/* Form Components*/
.form-group input {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    box-sizing: border-box;
    text-align: center; 
}


.form-group label {
    display: block;
    color: white;
    margin-bottom: 5px;
    text-align: center;  
}


.form-group {
    margin-bottom: 15px;
    text-align: center; 
}


 /*Register Styling*/
.register-container {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    text-align: center; 
    color: white; 
    padding-top: 70px;
 	position: absolute;
}


/* Regsister icon */
.register-icon {
   	width: 100px;
    height: 100px;
    padding: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    top: 0;
    z-index: 1;
}

/* Placeholder to tell user what goes in what fields */
.form-group input::placeholder {
    color: rgba(255, 255, 255);
}

/* Error message display */
.error-message {
    color: #ff6b6b;
    margin: 10px 0;
    display: none;
    text-align: center;
}

/* Register button */
.register-button {
    background: #f0a500;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    width: 100%;
    font-size: 16px;
    margin-top: 10px;
}

