/* General styles */
body {
    font-family: Arial, sans-serif;
    background-color: #ebebeb;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-bottom: 10px;
}

.form {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 320px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.logo-container {
    position: relative;
    height: 64px;
}

.logo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 2px solid #28a745;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -48px;
}

.input-container {
    margin-top: 40px;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}

.icon-container {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #ccc;
    background-color: #f9f9f9;
}

.input-field {
    flex: 1;
    height: 48px;
    padding: 10px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
}

.input-field::placeholder {
    color: #aaa;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #0e9c7e;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.submit-btn:hover {
    background-color: #0c7d65;
}

.register-text {
    text-align: center;
    margin-top: 16px;
    color: #555;
    position: relative;
}

.register-link {
    color: #0e9c7e;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    bottom: -10px;
}

.register-link:hover {
    color: #d9534f;
}

@media screen and (max-width: 480px) {
    .form {
        padding: 10px;
        max-width: 90%;
    }

    .logo {
        width: 70px;
        height: 70px;
        top: -50px;
    }

    .logo-container {
        position: relative;
        height: 64px;
        top: 10px;
    }

    .input-field {
        padding: 7px;
        font-size: 12px;
    }

    .submit-btn {
        font-size: 14px;
        padding: 10px;
    }

    .register-text {
        font-size: 12px;
    }

    .logo-container {
        margin-bottom: 10px;
    }
}

/* Tablets (481px - 768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .form {
        padding: 15px;
        max-width: 85%;
    }

    .logo-container {
        position: relative;
        height: 64px;
        top: -1px;
    }

    .logo {
        width: 80px;
        height: 80px;
    }

    .input-field {
        padding: 8px;
        font-size: 14px;
    }

    .submit-btn {
        font-size: 16px;
        padding: 12px;
    }
}

/* Laptops (769px - 1200px) */
@media screen and (min-width: 769px) and (max-width: 1200px) {
    .form {
        padding: 20px;
        max-width: 70%;
    }

    .logo {
        width: 80px;
        height: 80px;
    }

    .input-field {
        padding: 10px;
        font-size: 16px;
    }

    .submit-btn {
        font-size: 18px;
        padding: 14px;
    }
}

/* Desktops (1201px and above) */
@media screen and (min-width: 1201px) {
    .form {
        max-width: 400px;
    }
}