* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #cce4f1, #d7f8d9);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 100%;
    max-width: 900px;
    height: auto;
    min-height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.row {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.side-image {
    background-image: url(../img/logo.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.side-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.text p {
    font-size: 24px;
    font-weight: 600;
}

.text i {
    font-size: 18px;
    font-weight: 400;
}

.right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.input-box {
    width: 100%;
    max-width: 330px;
}

.input-box header {
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #0e794c;
    font-size: 24px;
}

.input-field {
    position: relative;
    margin-bottom: 20px;
}

.input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    outline: none;
    font-size: 16px;
    color: #40414a;
    padding: 10px 0;
    transition: border-color 0.3s ease;
}

.input:focus {
    border-bottom: 2px solid #0e794c;
}

.input-box .input-field label {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.3s ease;
    color: rgba(0, 0, 0, 0.5);
}

.input-field .input:focus ~ label,
.input-field .input:valid ~ label {
    top: 0;
    font-size: 12px;
    color: #0e794c;
}

.submit {
    width: 100%;
    height: 50px;
    background: #0e794c;
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit:hover {
    background: #0b5a3a;
}

.signin {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
}

.signin a {
    color: #0e794c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signin a:hover {
    color: #0b5a3a;
}

@media only screen and (max-width: 768px) {
    .row {
        flex-direction: column;
        height: auto;
    }

    .side-image {
        width: 100%;
        height: 200px;
        border-radius: 20px 20px 0 0;
    }

    .right {
        width: 100%;
        padding: 20px;
    }

    .text {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .text p, .text i {
        font-size: 18px;
    }
}