
.fp-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 60vh;
    border-radius: 10px;
    background-color: #f0f0f0;
    padding: 40px 20px;

    background-image: url("../images/forgotpass.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.fp-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fp-header {
    width: 720px;
    margin-bottom: 30px;
}

.fp-header h2 {
    font-size: 24px;
    margin: 0;
}

.fp-header p {
    font-size: 16px;
    color: #333;
}

.fp-mail-box {
    width: 350px;
    border: 1px solid #ccc;
    padding: 20px;
    background-color: #fefefe;
}

.fp-mail-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.fp-mail-row label {
    margin-bottom: 5px;
    text-align: left;
    font-weight: bold;
    font-size: 14px;
}

.fp-input-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.fp-label {
    font-size: 14px;
    color: #000;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: left;
    display: inline-block;
    width: 100%;
}

.fp-submit-row input {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

.fp-submit-row input:hover {
    background-color: #45a049;
}


