@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap");
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body {
    background-color: #034b9c;
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji; */
    color: white;
    line-height: 2rem;
}

.img-logo {
    width: 50px;
    height: auto;
}

.mail-title {
    font-weight: bolder;
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.mail-title-light {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 3px;
}

/* FORM */

.form-input {
    display: flex;
    flex-direction: column;
    margin-top: 1.2rem;
    font-size: 2rem;
}

input[placeholder] {
    /* color: transparent; */
    background-color: transparent;
    padding: 1.3rem;
    /* border: none; */
    margin-top: 1rem;
    border: none;
    border-bottom: 2px solid #3498dbae;
    border-width: 5px;
    font-size: 1.3rem;
    transition: ease-in 0.5s;
}

/* applies when clicked */

.input-border-color {
    border-bottom: 4px solid white !important;
    border-width: 100%;
    transition: ease-in 0.5s;
    margin-top: 1rem;
    font-size: 1.3rem;
    /* height: 5px; */
}

::placeholder {
    color: #3498dbae;
    line-height: 2rem;
}

input {
    border: none;
    outline: none;
    background-color: transparent;
    color: white;
    width: 100%;
}

/* FOR SUBMIT BUTTON */

.submit-form {
    margin-top: 100px;
    padding: 10px;
    color: rgba(141, 175, 228, 0.5);
    font-weight: bolder;
    font-size: 1.2rem;
    background-color: rgba(133, 193, 246, 0.146);
    border: none;
    border-radius: 0.357rem;
    transition: ease-in 0.5s;
}

.submit-form:hover {
    background-color: rgba(59, 130, 246, 0.5);
    cursor: pointer;
    color: white;
}

.btn-register {
    background-color: inherit;
    margin: 20px 0;
    padding: 10px 100px;
    width: 100%;
    border: 2px solid rgb(121, 155, 243);
    color: white;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 0.357rem;
}

/* eye-icon on submit button */

.password-container {
    width: 100%;
    position: relative;
}

.password-icon {
    position: absolute;
    top: 35px;
    right: 15px;
    cursor: pointer;
    color: #3498dbae;
    font-size: 25px;
}

.forgot-password {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    justify-content: end;
    margin-top: 10px;
}

.hide {
    visibility: hidden;
}

/* GENERAL CONTAINER */

.container {
    width: 90%;
    margin: 0 auto;
    padding: 30px 0;
}

.container-img {
    margin-bottom: 6rem;
}

.container-mail-form {
    /* padding: 30px; */
    padding-left: 10px;
}

/* DESKTOP VIEW */

@media screen and (min-width: 900px) {
    .container {
        width: 35%;
        margin: 0 auto;
        padding: 30px 0;
    }
}