@import url('https://fonts.googleapis.com/css2?family=Playfair&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital@0;1&display=swap');

body {
    font-family: "Playfair";
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.content {
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

/* Background Image and Overlay */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../img/grand-staircase-ceremony-2.jpg');
    background-size: cover;
    background-position: center; */
    background-color: #D8B1AC;
    z-index: 1;
}
.background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}


/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3; /* Bring the form above the background */
    padding: 20px;
    text-align: center;
    font-family: "Playfair";
    background: rgba(0, 0, 0, 0.25);
    color: white;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    /* border: 1px solid rgba(0, 0, 0, 0.3); */
    width: 100%;
    max-width: 800px;
}

form h1 {
    font-size: 80px;
    color: #ffffff;
    margin: 0;
    font-weight: normal;
    font-family: "Baskervville";
}

form p {
    font-size: 24px;
    color: #ffffff;
    margin: 0 0 15px;
    font-family: "Playfair";
    font-weight: normal;
    max-width: 100%;
    max-width: 750px;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.password-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.password-container input[type="password"] {
    width: 100%;
    padding-right: 40px; /* Add padding to make space for the icon */
}

.password-container i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #ffffff;
}

.password-container i:hover {
    color: #D7A7A0;
}

input[type="password"], input[type="text"], input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    max-width: 400px;
}

input[type="password"] , input[type="text"]{
    background-color: transparent;
    color: #ffffff;
}

::placeholder {
    color: #ffffff;
    font-family: "Playfair";
}

input[type="submit"] {
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 5px;
    color: #ffffff;
    padding: 7px 30px;
    font-size: 20px;
    font-weight: normal;
    font-family: "Playfair";
    transition: 0.5s ease;
    cursor: pointer;
}
input[type="submit"]:hover {
    background-color: #D7A7A0;
}