body {
    font-family: Arial, sans-serif;
    background-image: url('../images/pexels-allanfranca-3465604.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    padding: 0;
}

main {
    max-width: 350px;
    width: 90%;
    margin: 80px auto;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    color:#ffffff;
    }

.paragraph-container {
    margin-bottom: 20px;
}

.input-container {
    display: flex;
    flex-direction: column;
}

input[type="text"],
input[type="password"]{
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 13px;
    border: none;
}

.button-container {
    margin-top: 20px;
}

button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    background-color: #ff9501dd;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

button, a {
    font-weight: bold;

}

.footer-container {
    color:rgb(255, 255, 255);
    font-size: 13px;
    margin-top: 20px;

}

.footer-paragraph  {
    font-weight: bold;
}

section a {
    text-decoration: none;
    color: #ff9501dd;
}

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