@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

img {
    align-items: center;
}

body {
    min-width: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #6699CC;
}

.container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); 
    box-sizing: border-box;
}

.container header {
    font-size: 1.5rem;
    color: #333;
    font-weight: 500;
    text-align: center;
}

.container .form {
    margin-top: 30px;
}

.form .input-box {
    width: 100%;
    margin-top: 20px;
}

.input-box label {
    color: #333;
}

.form .input-box input {
    position: relative;
    height: 50px;
    width: 100%;
    outline: none;
    font-size: 1rem;
    color: #707070;
    margin-top: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 15px;
}

.input-box input:focus {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.form .column {
    display: flex;
    column-gap: 15px;

}

.form button {
    height: 55px;
    width: 100%;
    color: #fff;
    font-size: 1rem;
    border: none;
    margin-top: 30px;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 400;
    transition: all 0.4s ease;
    background-color: #6699CC;
}

.form button:hover {
    background-color: #89CFF0;
}


/* RESPONSIVE */
@media screen and (max-width: 600px) {
    .container {
        padding: 15px; /* Μειώνουμε το padding για να δώσουμε περισσότερο χώρο σε μικρές οθόνες */
    }

    .container header {
        font-size: 1.2rem; /* Μικραίνουμε το μέγεθος του κειμένου κεφαλίδας */
    }

    .form .input-box {
        margin-top: 15px; /* Μειώνουμε το margin-top των input boxes για καλύτερη διάταξη */
    }

    .input-box input {
        height: 45px; /* Μικραίνουμε το ύψος των input boxes */
    }

    .form button {
        height: 50px; /* Μικραίνουμε το ύψος του κουμπιού */
        margin-top: 20px; /* Μειώνουμε το margin-top του κουμπιού */
    }
}










/* LOGO AKTINA TRAVEL GROUP WILL BE
 .container header {
    font-size: 1.5rem;
    color: #333;
    font-weight: 500;
    text-align: center;
}
    */