/* style_login.css */

/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
background-size: 100%;
}

/* Navbar styling */
nav {
    width: 100%;
    background: #333;
    color: #fff;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
}

.wrapper {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

nav h1 {
    font-size: 1.5em;
}

nav h1 a {
    color: #fff;
    text-decoration: none;
}

/* Login box styling */
.login-box {
    padding: 20px 1px;
    display: flex;
    margin: auto;
    justify-content: center;
    background-color: rgba(255, 255, 255, .6);
    width: 400px;
    height: 550px;
    border-radius: 15px;
    padding: 10px 35px 10px 35px;
    backdrop-filter: blur(7px);
}

.login-box-logo img {
    width: 100%;
    height: 150px;
    
}

.login-box-header h2 {
    margin: 20px 0;
}

.login-box-form {
    display: flex;
    flex-direction: column;
}

.form-item {
    margin-bottom: 15px;
}

.form-item input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-item-other {
    margin: 10px 0;
}

.form-item-other a {
    color: #007bff;
    text-decoration: none;
}

.form-item-other a:hover {
    text-decoration: underline;
}

button {
    background: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

button:hover {
    background: #0056b3;
}
