* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #1e1e1e 50%, #F24822 120%);
    font-family: Arial, sans-serif;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.login-form {
    background-color: #1f1f21;
    padding: 80px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 450px;
    height: 500px;
    text-align: center;
}

.logo {
    width: 200px;
    margin: 0 auto 40px;
    display: block;
}

.input-field {
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    border: 1px solid #ccc;
    font-size: 14px;
}

.input-container {
    position: relative;
    margin-bottom: 20px;
}

.input-field {
    width: 100%;
    padding: 10px;
    padding-right: 30px;
    border: none;
    border-bottom: 2px solid white;
    background-color: transparent;
    font-size: 14px;
    color: #fff;
    outline: none;
}

input:-webkit-autofill {
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    box-shadow: 0 0 0px 1000px white inset !important;
}

.label {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 16px;
    color: #aaa;
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating {
    top: -5px;
    font-size: 16px;
    color: #fff;
}

.icon {
    position: absolute;
    right: 10px;
    top: 40%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 20px;
}

.login-button {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #F24822;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.login-button:hover {
    background-color: #c04023;
}
