﻿body {
    margin: 0;
}
.container {
    height: 100vh;
    background: #4375EB;
    background: linear-gradient(225deg, #4375EB 0%, #6B5AE2 37%, #9559C9 74%, #7990B2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-container {
    padding: 40px 20px;
    box-sizing: border-box;
    font-family: montserrat, sans-serif;
    background: white;
    width: 30%;
    border-radius: 7px;
}
img {
    height: 70px;
}
.title {
    font-size: 24px;
    font-weight: 500;
    color: #1504B2;
}
.row {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon {
    background: #4971EA;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    padding: 9px;
    color: white;
}
input {
    border: none;
    height: 3em;
    width: 100%;
    padding-left: 10px;
    background-color: #E6E6E6;
}
.login-btn {
    border: none;
    width: 100%;
    font-size: 16px;
    padding: .5em 0;
    letter-spacing: .75px;
    color: white;
    background: linear-gradient(225deg, #5F62E5 0%, #484AAD 74%, #2B5876 100%);
    font-weight: 600;
}
}
    .login-btn:hover {
        transition: ease-in-out;
        transform: scale(1.05,1.05)
    }