body {
    background-color: rgb(210, 210, 210) !important;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
}

p {
    margin: 0;
}

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

/* .nav-bar {
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.M-fashion {
    display: flex;
    align-items: center;
}

.m {
    font-family: 'Sonsie One', system-ui;
    font-size: 3em;
}

.f {
    font-family: 'Sorts Mill Goudy', serif;
    font-size: 2em;
    margin-left: 0.5em;
} */

.outer-box {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    display: flex;
    background-color: white;
    flex-wrap: wrap;
    box-shadow: 0 0 10px rgba(0,0,0,0.8);
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
}

.photo {
    flex: 1 1 50%;
    min-height: 300px;
    background: url('/images/image.jpg') center/cover no-repeat;
}

.form {
    flex: 1 1 50%;
    padding: 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.back {
    margin-bottom: 1em;
}

.back-btn {
    color: black;
    font-weight: 500;
}

.titile {
    font-size: 1.8em;
    margin-bottom: 0.5em;
}

.warning {
    color: red;
    margin-bottom: 1em;
}

.discription {
    margin-bottom: 1em;
}

.dis {
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
}

.email-box {
    width: 100%;
    padding: 1em;
    background-color: rgb(230, 230, 230);
    border: none;
    margin-bottom: 1em;
    font-size: 1em;
}

::placeholder {
    color: #555;
}

.submit {
    width: 100%;
    padding: 0.75em;
    background-color: rgb(0, 123, 255);
    border: none;
    color: white;
    font-size: 1em;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit:hover {
    background-color: rgb(0, 100, 210);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .container {
    min-height: 100vh;    }
    .outer-box {
        flex-direction: column;
    }

    .photo {
        display: none;
    }

    .form {
        padding: 1.5em;
    }
}
