/* Reset & βασικά */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    min-height: 100vh;
    background: #1a1a1a url('../images/background.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Κουτί φόρμας */
.form-container {
    position: relative;
    width: 400px;
    padding: 50px 40px;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 400px;
    height: 520px;
    background: linear-gradient(0deg, transparent, #45f3ff, #45f3ff);
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
}

.form-container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 400px;
    height: 520px;
    background: linear-gradient(0deg, transparent, #ff2770, #ff2770);
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
    animation-delay: -3s;
}

@keyframes animate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Εσωτερικό της φόρμας */
.form-box {
    position: relative;
    z-index: 10;
    background: #0a0a0a;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-box input[type="text"],
.form-box input[type="email"],
.form-box input[type="password"] {
    width: 100%;
    padding: 15px 20px;
    border: none;
    background: #1a1a1a;
    border-radius: 5px;
    color: #fff;
    font-size: 1em;
    margin-bottom: 10px;
}

.form-box input[type="submit"],
.form-box button {
    background-color: rgb(215, 151, 56);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.form-box button {
    background-color: #607D8B;
}

h2 {
    color: #fff;
    font-weight: 600;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Περιοχή Τύπος Πελάτη */
.customer-type-wrapper {
    margin-top: 15px;
    font-size: 0.95em;
    color: #eee;
}

/* Τίτλος Πελάτη */
.customer-type-wrapper label {
    font-weight: bold;
    color: #fff;
    display: block;
    margin-bottom: 8px;
}

/* Στυλ για radio buttons */
.customer-type-wrapper input[type="radio"] {
    display: inline-block;
    vertical-align: middle;
    accent-color: rgb(215, 151, 56);
    margin-right: 6px;
}

/* Κάνει το 2ο radio να κατεβαίνει ελαφρώς πιο κάτω */
.customer-type-wrapper input[type="radio"]:nth-of-type(2) {
    margin-top: 8px;
    display: inline-block;
}

/* Προσθήκη hover effect */
.customer-type-wrapper input[type="radio"]:hover {
    filter: brightness(1.2);
}
/* Reset & βασικά */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    min-height: 100vh;
    background: #1a1a1a url('../images/background.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Κουτί φόρμας */
.form-container {
    position: relative;
    width: 400px;
    padding: 50px 40px;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 400px;
    height: 520px;
    background: linear-gradient(0deg, transparent, #45f3ff, #45f3ff);
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
}

.form-container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 400px;
    height: 520px;
    background: linear-gradient(0deg, transparent, #ff2770, #ff2770);
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
    animation-delay: -3s;
}

@keyframes animate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Εσωτερικό φόρμας */
.form-box {
    position: relative;
    z-index: 10;
    background: #0a0a0a;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-box input[type="text"],
.form-box input[type="email"],
.form-box input[type="password"] {
    width: 100%;
    padding: 15px 20px;
    border: none;
    background: #1a1a1a;
    border-radius: 5px;
    color: #fff;
    font-size: 1em;
    margin-bottom: 10px;
}

.form-box input[type="submit"],
.form-box button {
    background-color: rgb(215, 151, 56);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.form-box button {
    background-color: #607D8B;
}

h2 {
    color: #fff;
    font-weight: 600;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.customer-type-wrapper {
    margin-top: 15px;
    font-size: 0.95em;
    color: #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Radio κουμπιά εμφάνιση */
.customer-type-wrapper input[type="radio"] {
    margin-right: 8px;
    accent-color: rgb(215, 151, 56);
}

/* Εμφανίζει κάθε radio + κείμενο σε δική του γραμμή */
.customer-type-wrapper input[type="radio"],
.customer-type-wrapper input[type="radio"] + text {
    display: inline;
}

.customer-type-wrapper br {
    display: none;
}

/* Για να βελτιωθεί η στοίχιση */
.customer-type-wrapper input[type="radio"]:nth-of-type(1)::after {
    content: " Πελάτης Λιανικής";
    color: #fff;
    margin-left: 4px;
}

.customer-type-wrapper input[type="radio"]:nth-of-type(2)::after {
    content: " Πελάτης Χονδρικής";
    color: #fff;
    margin-left: 4px;
    display: inline-block;
    margin-top: 8px;
}
