﻿

.screen-1 {
    background: #f1f7fe;
    padding: 2em;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    box-shadow: 0 0 2em #e6e9f9;
    gap: 2em;
    width:400px;
}

    .screen-1 .logo {
        margin-top: -3em;
    }

    .screen-1 .email {
        background: white;
        box-shadow: 0 0 2em #e6e9f9;
        padding: 1em;
        display: flex;
        flex-direction: column;
        gap: 0.5em;
        border-radius: 20px;
        color: #4d4d4d;
        margin-top: -3em;
        text-align:left;
    }

        .screen-1 .email input {
            outline: none;
            border: none;
        }

            .screen-1 .email input::-moz-placeholder {
                color: black;
                font-size: 0.9em;
            }

            .screen-1 .email input:-ms-input-placeholder {
                color: black;
                font-size: 0.9em;
            }

            .screen-1 .email input::placeholder {
                color: black;
                font-size: 0.9em;
            }

        .screen-1 .email ion-icon {
            color: #4d4d4d;
            margin-bottom: -0.2em;
        }

    .screen-1 .password {
        background: white;
        box-shadow: 0 0 2em #e6e9f9;
        padding: 1em;
        display: flex;
        flex-direction: column;
        gap: 0.5em;
        border-radius: 20px;
        color: #4d4d4d;
        text-align:left;
    }

        .screen-1 .password input {
            outline: none;
            border: none;
            width: 100%;
        }

            .screen-1 .password input::-moz-placeholder {
                color: black;
                font-size: 0.9em;
            }

            .screen-1 .password input:-ms-input-placeholder {
                color: black;
                font-size: 0.9em;
            }

            .screen-1 .password input::placeholder {
                color: black;
                font-size: 0.9em;
            }

        .screen-1 .password ion-icon {
            color: #4d4d4d;
            margin-bottom: -0.2em;
        }

        .screen-1 .password .show-hide {
            margin-right: -5em;
        }

    .screen-1 .login {
        padding: 1em;
        background: #3e4684;
        color: white;
        border: none;
        border-radius: 30px;
        font-weight: 600;
    }

    .screen-1 .footer {
        display: flex;
        font-size: 0.7em;
        color: #5e5e5e;
        gap: 14em;
        padding-bottom: 1em;
        height:30px;
    }

        .screen-1 .footer span {
            cursor: pointer;
        }

@media only screen and (max-width: 700px) {
    .screen-1 {
        width: 80%;
    }
}

button {
    cursor: pointer;
}
