input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #000 !important;
}

* {
    font-family: "Poppins";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: auto;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #dde5f4;
    margin: 0;
    padding: 0;
}

.screen-1 {
    width: 100%;
    max-width: 500px;
    background: #f1f7fe;
    padding: 2em;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    box-shadow: 0 0 2em #e6e9f9;
    gap: 2em;
    margin: 1em;
    text-align: center;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 50%;
    max-width: 200px;
}

.email, .password {
		text-align: left;

    background: white;
    box-shadow: 0 0 2em #e6e9f9;
    padding: 1em;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    border-radius: 20px;
    color: #4d4d4d;
}

.email input, .password input {
    outline: none;
    border: none;
}

.email input::placeholder, .password input::placeholder {
    color: black;
    font-size: 0.9em;
}

.email ion-icon, .password ion-icon {
    color: #4d4d4d;
    margin-bottom: -0.2em;
}

.login {
    padding: 1em;
    background: #3e4684;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
}

.powered-by {
	  font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    color: #3e4684;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}


.powered-by:hover {
    color: #2e3574;
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .screen-1 {
        padding: 1em;
    }

    .login {
        padding: 0.8em;
    }

    .footer {
        flex-direction: column;
        gap: 0.5em;
    }
}
