32 lines
445 B
CSS
32 lines
445 B
CSS
.auth-validation-error{
|
|
display: block;
|
|
color: red;
|
|
font-size: 0.7rem;
|
|
}
|
|
|
|
.required-input{
|
|
color: red;
|
|
font-weight: bolder;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
#password-strength-status {
|
|
margin-top: 5px;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.invalid {
|
|
color: red;
|
|
border-color: red;
|
|
}
|
|
|
|
.valid {
|
|
color: green;
|
|
border-color: green;
|
|
}
|
|
|
|
input:focus {
|
|
outline: none; /* Menghilangkan outline default */
|
|
}
|