/* 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;
}

 /*Login Styling*/
.login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    padding-top: 70px;
    position: relative;
}

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


/* Form Components*/
.form-group {
    margin-bottom: 15px;
}

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

.form-group input {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
}


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

/* Login button */
.login-button {
    background: #f0a500;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
}
