/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: url('image.png') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

.brand img {
    width: 300px; /* Adjust as necessary */
    height: auto;
}


header h2 {
    font-size: 1.5rem;
    color: #ffffff;
}

.content {
    display: flex;
    gap: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.1); /* Translucent background */
    border: 2px solid rgba(255, 255, 255, 0.6); /* Stroke around the card */
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card h3 {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

form label {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #e3e3e3;
}

form input {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent input fields */
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6); /* Stroke */
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
}

form input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

form button {
    background: #4a148c;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

form button:hover {
    background: #7c4dff;
}

.card p {
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
}
