.container-login{
    width: 100vw;
    height: 100vh;
    background-color: rgb(124, 124, 124);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.form-login{
    padding: 10px;
    margin: 10px;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.input-container{
    width: 100%;
    margin-bottom: 15px;
    font-size: 16px;
    border-radius: 5px;
    color: white;
    display: flex;
    align-items: stretch;
    margin-bottom: 15px;
}
.input-container input{
    border: none;
    background: #eee;
    flex: 1;
    padding: 10px;
    padding-left: 15px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.icon-box{
    background-color: #ccc;
    padding: 0 10px;
    position: relative;
    display: flex;
    align-items: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.icon-box::after{
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #ccc;
}
.login-btn{
    width: 100%;
    padding: 10px;
    margin: 5px;
    background-color: #dc2435;
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}
.login-btn:hover{
    background-color: #be2030;
}

