Spaces:
Sleeping
Sleeping
File size: 2,203 Bytes
f639e70 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
body {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(45deg, #0a192f, #172a46);
padding: 20px;
}
.container {
width: 100%;
max-width: 400px;
}
.signup-form {
background: #172a46;
padding: 40px;
border-radius: 10px;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
border: 1px solid #304a6e;
transform: translateY(0);
transition: transform 0.3s ease;
}
.signup-form:hover {
transform: translateY(-5px);
}
h2 {
color: #ccd6f6;
text-align: center;
margin-bottom: 30px;
font-size: 28px;
font-weight: 600;
}
.form-group {
position: relative;
margin-bottom: 30px;
}
.form-group input {
width: 100%;
padding: 10px 0;
font-size: 16px;
color: #ccd6f6;
background: transparent;
border: none;
border-bottom: 2px solid #304a6e;
outline: none;
transition: border-color 0.3s ease;
}
.form-group label {
position: absolute;
top: 10px;
left: 0;
font-size: 16px;
color: #8892b0;
pointer-events: none;
transition: all 0.3s ease;
}
.form-group input:focus,
.form-group input:valid {
border-bottom-color: #64ffda;
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
top: -20px;
font-size: 12px;
color: #64ffda;
}
.signup-button {
width: 100%;
padding: 12px;
background: #64ffda;
color: #0a192f;
border: none;
border-radius: 5px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: background 0.3s ease, transform 0.2s ease;
}
.signup-button:hover {
background: #52d3b4;
transform: translateY(-2px);
}
.signup-button:active {
transform: translateY(0);
}
.login-link {
text-align: center;
margin-top: 20px;
color: #8892b0;
}
.login-link a {
color: #64ffda;
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
.login-link a:hover {
color: #52d3b4;
text-decoration: underline;
} |