* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    flex-direction: column;
}

.container {
    height: 550px;
    width: 500px;
    background-color: #272727;
    border-radius: 30px;
    transform: scale(1.3);
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header {
    font-size: 50px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.text-box-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 100px 0px 0px 0px;
}

.text-box {
    height: 50px;
    width: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0px 10px 0px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid white;
    font-size: 18px;
    padding: 10px;
    color: white;
}

::placeholder {
    color: #c0c0c0;
}

.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-btn {
    width: 300px;
    height: 60px;
    font-size: 25px;
    color: white;
    background-color: #272727;
    border: 4px solid #414141;
    cursor: pointer;
    border-radius: 10px;
    bottom: 80px;
    position: absolute;
}

.password-strong-text {
    color: white;
    display: flex;
    justify-content: left;
    align-items: center;
    margin-left: 25px;
    display: none;
}