@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');

* {
    padding: 0;
    margin: 0;
    outline: none;
    font-family: 'Noto Sans', sans-serif;
}

body {
    background-color: #000;
    display: flex;
    height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.form {
    width: 300px;
    background-color: #111424;
    color: #fff;
    padding: 40px 20px;
    border-radius: 24px;
}

.title {
    font-size: 2rem;
    font-weight: 700;
}

.subtitle {
    font-weight: 700;
    margin-top: 10px;
}

.input-container {
    margin: 30px 0;
    position: relative;
}

.input {
    width: 100%;
    padding-top: 14px;
    padding-bottom: 14px;
    border: none;
    border-radius: 12px;
    color: white;
    background-color: #ffffff22;
}

.submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    color: #fff;
    background-color: #2888ff;
}

.placeholder {
    color: #ffffff88;
    position: absolute;
    top: 12px;
    left: 24px;
}

.input:focus ~ .placeholder {
    display: none;
}