* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: url('filip-zrnzevic-QsWG0kjPQRY-unsplash.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
}

.container {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 60%;
    min-width: 50%;
    min-height: 400px;
    max-height: 90%px;
    text-align: left;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-items: flex-start;
}

.logo {
    display: block;
    margin: 0 auto 20px;
    width: 150px;
}

h1 {
    text-align: left;
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: left;
}

nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

nav a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}
