body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}
.container {
    text-align: center;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.title {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 48px;
    font-weight: bold;
    color: #4A90E2; /* Μπορείς να αλλάξεις το χρώμα */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
input[type="email"], input[type="password"],input[type="text"] {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
input[type="submit"] {
    background-color: #4A90E2;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
input[type="submit"]:hover {
    background-color: #357ABD;
}
.register{
    padding-top: 20px;
}
.register a {
    color: #4A90E2; /* Χρώμα του συνδέσμου */
    text-decoration: none; /* Αφαίρεση υπογράμμισης */
}
.register a:hover {
    color: #06315c; /* Χρώμα όταν αιωρείται το ποντίκι */
}

.about-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px; /* Μέγεθος εικονιδίου */
    color: #4A90E2; /* Χρώμα εικονιδίου */
    cursor: pointer; /* Δείκτης χεριού για καλύτερη εμπειρία χρήστη */
    transition: transfrom 0.8s;
}
.about-icon:hover{
    transform: scale(1.2);
}

.popup{
    display:none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

