@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f5f7fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 900px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.illustration {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #fff;
}

.illustration img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.form-container {
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid black;
    border-radius: 5px;
    font-size: 16px;
    background: #fff;
    color: black;
    outline: none;
}

button {
    width: 100%;
    padding: 12px;
    background: #4a90e2;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

button:hover {
    background: #357abd;
}

.signin-link {
    text-align: center;
    margin-top: 10px;
}

.signin-link a {
    color: #4a90e2;
    text-decoration: none;
}
/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: none;
    justify-content: center;
    align-items: center;
}

.popup {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: #000;
}

.popup img {
    width: 250px;
    height: 150px;
}

.popup p {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    color: #000;
}

.popup span {
    display: block;
    margin-bottom: 15px;
    color: #555;
    margin-top: 3px;
}

.popup a {
    display: block;
    margin-top: 20px;
    border: 1px solid green;
    color: green;
    padding: 5px;
    background: #fff;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
}


/* Responsive Design */
@media (min-width: 768px) {
    .container {
        flex-direction: row;
    }
    .illustration {
        width: 50%;
    }
    .form-container {
        width: 50%;
    }
    .popup {
        padding: 15px;
    }

    .popup i {
        font-size: 50px;
    }

    .popup p {
        font-size: 18px;
    }

    .popup span {
        font-size: 14px;
    }

    .popup a {
        padding: 8px;
        font-size: 16px;
    }
}
