173 lines
3.1 KiB
SCSS
173 lines
3.1 KiB
SCSS
/* Background wrapper */
|
|
.verify-wrapper {
|
|
width: 100%;
|
|
height: 100vh;
|
|
background: #0e0e0e;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 20px;
|
|
}
|
|
|
|
/* Card */
|
|
.verify-card {
|
|
width: 420px;
|
|
|
|
/* NEW: More contrast from background */
|
|
background: var(--bg-gradient-onyx);
|
|
|
|
border-radius: 18px;
|
|
padding: 35px 40px;
|
|
|
|
/* NEW: Clean gold glow */
|
|
box-shadow:
|
|
0 0 12px rgba(227, 179, 65, 0.25),
|
|
0 10px 35px rgba(0, 0, 0, 0.65);
|
|
|
|
/* NEW: Gold border highlight */
|
|
border: 1px solid rgba(227, 179, 65, 0.15);
|
|
|
|
/* Slight glass effect */
|
|
backdrop-filter: blur(6px);
|
|
}
|
|
|
|
|
|
/* Title */
|
|
.title {
|
|
text-align: center;
|
|
color: #fff;
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
/* Labels */
|
|
label {
|
|
color: #d6d6d6;
|
|
font-size: 14px;
|
|
margin-bottom: 6px;
|
|
display: block;
|
|
}
|
|
|
|
/* Inputs */
|
|
input {
|
|
width: 100%;
|
|
padding: 14px;
|
|
background: #111;
|
|
border: 1px solid #333;
|
|
color: #fff;
|
|
border-radius: 10px;
|
|
font-size: 15px;
|
|
margin-bottom: 18px;
|
|
outline: none;
|
|
transition: 0.25s;
|
|
|
|
&:focus {
|
|
border-color: #e3b341;
|
|
box-shadow: 0 0 5px rgba(227, 179, 65, 0.45);
|
|
}
|
|
|
|
&::placeholder {
|
|
color: #777;
|
|
}
|
|
}
|
|
|
|
/* Primary buttons */
|
|
button {
|
|
width: 100%;
|
|
padding: 14px;
|
|
background: #e3b341;
|
|
border: none;
|
|
color: #111;
|
|
font-size: 16px;
|
|
border-radius: 10px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: 0.25s;
|
|
text-align: center;
|
|
|
|
&:disabled {
|
|
background: #555;
|
|
color: #aaa;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
&:not(:disabled):hover {
|
|
background: #f2c85c;
|
|
}
|
|
}
|
|
|
|
/* Resend OTP button */
|
|
.resend-btn {
|
|
margin-top: 12px;
|
|
background: transparent !important;
|
|
color: #e3b341 !important;
|
|
border: 1px solid #e3b341;
|
|
font-size: 14px;
|
|
|
|
&:hover:not(:disabled) {
|
|
background: rgba(227, 179, 65, 0.1);
|
|
}
|
|
|
|
&:disabled {
|
|
border-color: #555;
|
|
color: #777;
|
|
}
|
|
}
|
|
|
|
/* Success message */
|
|
.success-msg {
|
|
margin-top: 10px;
|
|
font-size: 16px;
|
|
color: #78ff8c;
|
|
text-align: center;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* Error / general message */
|
|
.error-message {
|
|
margin-top: 12px;
|
|
color: #ff6b6b;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.error-text {
|
|
color: #ff6b6b;
|
|
font-size: 13px;
|
|
margin: 6px 0 0;
|
|
text-align: left;
|
|
}
|
|
|
|
.error-banner {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
background: rgba(255, 80, 80, 0.1);
|
|
border: 1px solid rgba(255, 80, 80, 0.3);
|
|
border-radius: 8px;
|
|
padding: 10px 14px;
|
|
margin: 10px 0 10px;
|
|
color: #ff6b6b;
|
|
font-size: 13px;
|
|
animation: shakeError 0.4s ease;
|
|
|
|
i {
|
|
font-size: 15px;
|
|
flex-shrink: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes shakeError {
|
|
0%, 100% { transform: translateX(0); }
|
|
20% { transform: translateX(-6px); }
|
|
40% { transform: translateX(6px); }
|
|
60% { transform: translateX(-4px); }
|
|
80% { transform: translateX(4px); }
|
|
}
|
|
|
|
.info-text {
|
|
color: #ccc;
|
|
font-size: 14px;
|
|
margin-bottom: 10px;
|
|
} |