body {
    background-image: url("/images/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    padding: 20px;
}

/* Main Container */
.container {
    background-color: white;
    padding: 20px;
    padding-right: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1000px;
}

/* Logo Section */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.logo-container img {
    margin-right: 10px;
    height: 5cm;
    width: 5cm;
}

/* Heading */
h1 {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    color: #4a4a4a;
    font-size: 20px;
    font-weight: bold;
}

input,
select {
    padding: 20px;
    margin-bottom: 15px;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 18px;
}

/* Address Fields */
.address-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.address-container select {
    flex: 1;
    min-width: 30%;
}

/* Submit Button */
button {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
}

button:hover {
    background-color: #0056b3;
}

/* Login Link */
.login-link {
    text-align: center;
    margin-top: 10px;
    color: #6c757d;
    font-size: 18px;
}

.login-link a {
    color: #dc3545;
    text-decoration: none;
    font-weight: bold;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Password Container Styles */
.password-container {
    position: relative;
}

.password-container input {
    width: 95.6%;

}

.password-container button {
    position: absolute;
    right: 5px;
    top: 40%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
}

#password-match-message {
    margin-top: 5px;
    font-size: 14px;
}

.match {
    color: green;
}

.no-match {
    color: red;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    .address-container {
        flex-direction: column;
    }

    .address-container select {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 20px;
    }

    button {
        font-size: 14px;
        padding: 12px;
    }

    .login-link {
        font-size: 13px;
    }
}
