*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(/image/xe14.jpg);
    background-size: cover;
    background-position: center;
}
.signup-box {
    max-width: 400px;
    width: 100%;
    background: linear-gradient(to right,#0b3014,#0d110d);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}
h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}
.field {
    position: relative;
    margin-bottom: 24px;
}
.field input {
    width: 100%;
    height: 40px;
    background: transparent;
    border: none;
    border-bottom: 2px solid #e5e7eb;
    color : #fff;
    font-size: 16px;
    outline: none;
}
.field label{
    position: absolute;
    left: 0;
    top: 10px;
    color:#d1d5db;
    font-size: 16px;
    pointer-events:none;
    transition:0.3s;
}
.field input:focus {
    border-bottom-color:#0deb24;
}
.field input:focus + label,
.field input:valid + label {
    top: -14px;
    font-size: 13px;
    color: #0deb24;
}
.signin {
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
    color: #fbfbfb;
}
.signin a {
    color: #fbfbfb;
    text-decoration: none;
}
.signin a:hover {
    text-decoration: underline;
}
button {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 8px;
    background: #2f2e31;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}
button:hover {
    background-color: #045a28;
}