|
@@ -730,7 +730,7 @@
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.custom-input.v-text-field {
|
|
.custom-input.v-text-field {
|
|
|
- flex: 0 0 auto;
|
|
|
|
|
|
|
+ // flex: 0 0 auto;
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
min-height: 3.63rem;
|
|
min-height: 3.63rem;
|
|
|
padding: 0;
|
|
padding: 0;
|
|
@@ -3506,176 +3506,401 @@ p.success-txt {
|
|
|
align-items: center;
|
|
align-items: center;
|
|
|
justify-content: center;
|
|
justify-content: center;
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
- height: 100%;
|
|
|
|
|
- padding: 3.63rem 0;
|
|
|
|
|
- background: #F2F6FF;
|
|
|
|
|
- &.type--join{
|
|
|
|
|
- overflow-y: auto;
|
|
|
|
|
- .login-box {
|
|
|
|
|
- height: auto;
|
|
|
|
|
- padding:45px 0px!important;
|
|
|
|
|
- background: #fff;
|
|
|
|
|
|
|
+ height: 100vh;
|
|
|
|
|
+ min-height: 700px;
|
|
|
|
|
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
|
|
|
+ overflow: hidden;
|
|
|
|
|
+
|
|
|
|
|
+ &::after {
|
|
|
|
|
+ content: '';
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ top: 20%;
|
|
|
|
|
+ right: 10%;
|
|
|
|
|
+ width: 300px;
|
|
|
|
|
+ height: 300px;
|
|
|
|
|
+ border-radius: 50%;
|
|
|
|
|
+ background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
|
|
|
|
|
+ animation: pulse 4s infinite ease-in-out;
|
|
|
|
|
+ z-index: 1;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @keyframes float {
|
|
|
|
|
+ 0% { transform: translate(-50%, -50%) rotate(0deg); }
|
|
|
|
|
+ 100% { transform: translate(-50%, -50%) rotate(360deg); }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @keyframes pulse {
|
|
|
|
|
+ 0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
|
|
|
|
|
+ 50% { transform: scale(1.1) rotate(180deg); opacity: 0.8; }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ overflow-y: auto;
|
|
|
|
|
+ .login-box {
|
|
|
|
|
+ height: auto;
|
|
|
|
|
+ box-shadow: 0 25px 50px rgba(0,0,0,0.15);
|
|
|
|
|
+ &.type--join{
|
|
|
|
|
+ padding: 45px 0px!important;
|
|
|
|
|
+ background-color: #fff;
|
|
|
|
|
+ width: 30%;
|
|
|
|
|
+ max-width: 1000px;
|
|
|
|
|
+ padding: 3rem!important;
|
|
|
|
|
+ .login-r{
|
|
|
|
|
+ height: 100%;
|
|
|
|
|
+ overflow-x: hidden;
|
|
|
|
|
+ overflow-y: auto;
|
|
|
|
|
+ padding: 0;
|
|
|
|
|
+ .login-btn-wrap{
|
|
|
|
|
+ margin-bottom: 0;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ // 게이트 페이지 스타일
|
|
|
|
|
+ .login--gate {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ height: 100vh;
|
|
|
|
|
+ z-index: 10;
|
|
|
|
|
+
|
|
|
|
|
+ .inf--gate,
|
|
|
|
|
+ .ven--gate {
|
|
|
|
|
+ flex: 1;
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ justify-content: center;
|
|
|
|
|
+ transition: all 0.3s ease;
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+ overflow: hidden;
|
|
|
|
|
+
|
|
|
|
|
+ &::before {
|
|
|
|
|
+ content: '';
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ top: 0;
|
|
|
|
|
+ left: 0;
|
|
|
|
|
+ right: 0;
|
|
|
|
|
+ bottom: 0;
|
|
|
|
|
+ background: rgba(0,0,0,0.3);
|
|
|
|
|
+ z-index: 1;
|
|
|
|
|
+ transition: all 0.3s ease;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .btn--contents {
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+ z-index: 2;
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+ color: white;
|
|
|
|
|
+ transform: translateY(20px);
|
|
|
|
|
+ opacity: 0.8;
|
|
|
|
|
+ transition: all 0.3s ease;
|
|
|
|
|
+
|
|
|
|
|
+ h2 {
|
|
|
|
|
+ font-size: 3.5rem;
|
|
|
|
|
+ font-weight: 300;
|
|
|
|
|
+ margin-bottom: 2rem;
|
|
|
|
|
+ text-transform: uppercase;
|
|
|
|
|
+ letter-spacing: 0.2em;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .loc--btn {
|
|
|
|
|
+ background: rgba(255,255,255,0.1);
|
|
|
|
|
+ backdrop-filter: blur(10px);
|
|
|
|
|
+ border: 2px solid rgba(255,255,255,0.3);
|
|
|
|
|
+ color: white;
|
|
|
|
|
+ padding: 15px 30px;
|
|
|
|
|
+ border-radius: 50px;
|
|
|
|
|
+ font-weight: 500;
|
|
|
|
|
+ letter-spacing: 0.1em;
|
|
|
|
|
+ transition: all 0.3s ease;
|
|
|
|
|
+
|
|
|
|
|
+ &:hover {
|
|
|
|
|
+ background: rgba(255,255,255,0.2);
|
|
|
|
|
+ transform: translateY(-2px);
|
|
|
|
|
+ box-shadow: 0 10px 25px rgba(0,0,0,0.2);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ &.actv {
|
|
|
|
|
+ &::before {
|
|
|
|
|
+ background: rgba(0,0,0,0.1);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .btn--contents {
|
|
|
|
|
+ transform: translateY(0);
|
|
|
|
|
+ opacity: 1;
|
|
|
|
|
+
|
|
|
|
|
+ h2 {
|
|
|
|
|
+ transform: scale(1.1);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .inf--gate {
|
|
|
|
|
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .ven--gate {
|
|
|
|
|
+ background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ .login--cock {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ height: 100vh;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ flex-direction: column;
|
|
|
|
|
+ z-index: 10;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .login--header {
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ top: 0;
|
|
|
|
|
+ left: 0;
|
|
|
|
|
+ right: 0;
|
|
|
|
|
+ height: 80px;
|
|
|
|
|
+ background: rgba(255,255,255,0.1);
|
|
|
|
|
+ backdrop-filter: blur(20px);
|
|
|
|
|
+ border-bottom: 1px solid rgba(255,255,255,0.1);
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ padding: 0 2rem;
|
|
|
|
|
+ z-index: 100;
|
|
|
|
|
+
|
|
|
|
|
+ .login--header--l {
|
|
|
|
|
+ .logo {
|
|
|
|
|
+ color: white;
|
|
|
|
|
+ font-size: 1.5rem;
|
|
|
|
|
+ font-weight: 700;
|
|
|
|
|
+ letter-spacing: 0.1em;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
.login-box {
|
|
.login-box {
|
|
|
display: flex;
|
|
display: flex;
|
|
|
- height: 43.63rem;
|
|
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ max-width: 1200px;
|
|
|
|
|
+ margin: auto;
|
|
|
|
|
+ border-radius: 20px;
|
|
|
|
|
+ overflow: hidden;
|
|
|
|
|
+ box-shadow: 0 25px 50px rgba(0,0,0,0.15);
|
|
|
|
|
+ backdrop-filter: blur(20px);
|
|
|
|
|
+ z-index: 10;
|
|
|
|
|
|
|
|
.login-l {
|
|
.login-l {
|
|
|
- flex-shrink: 0;
|
|
|
|
|
- width: 39.94rem;
|
|
|
|
|
- background: #064F9E url("../img/bg_login.svg") no-repeat center / 100%;
|
|
|
|
|
|
|
+ flex: 1;
|
|
|
|
|
+ background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
|
|
|
|
|
+ backdrop-filter: blur(20px);
|
|
|
|
|
+ border: 1px solid rgba(255,255,255,0.1);
|
|
|
display: flex;
|
|
display: flex;
|
|
|
align-items: center;
|
|
align-items: center;
|
|
|
- flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
justify-content: center;
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+ overflow: hidden;
|
|
|
|
|
|
|
|
.login-l-center {
|
|
.login-l-center {
|
|
|
- width: 15.63rem;
|
|
|
|
|
- height: 13.13rem;
|
|
|
|
|
- background: #fff;
|
|
|
|
|
- display: flex;
|
|
|
|
|
- align-items: center;
|
|
|
|
|
- flex-direction: column;
|
|
|
|
|
- justify-content: center;
|
|
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+ z-index: 2;
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+ padding: 3rem;
|
|
|
|
|
+ background: rgba(255,255,255,0.1);
|
|
|
|
|
+ backdrop-filter: blur(10px);
|
|
|
|
|
+ border-radius: 15px;
|
|
|
|
|
+ border: 1px solid rgba(255,255,255,0.2);
|
|
|
|
|
|
|
|
.logo {
|
|
.logo {
|
|
|
- font-size: 0;
|
|
|
|
|
|
|
+ color: white;
|
|
|
|
|
+ font-size: 2.5rem;
|
|
|
|
|
+ font-weight: 700;
|
|
|
|
|
+ letter-spacing: 0.1em;
|
|
|
display: block;
|
|
display: block;
|
|
|
- height: 1.25rem;
|
|
|
|
|
- width: 100%;
|
|
|
|
|
- background: url("../img/logo_login.svg") no-repeat center / auto 100%;
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
p {
|
|
|
- margin: 0.75rem 0 0;
|
|
|
|
|
- text-align: center;
|
|
|
|
|
- color: #333;
|
|
|
|
|
- letter-spacing: -0.02rem;
|
|
|
|
|
- font-size: 1.19rem;
|
|
|
|
|
- line-height: 1.19rem;
|
|
|
|
|
|
|
+ color: rgba(255,255,255,0.8);
|
|
|
|
|
+ font-size: 1rem;
|
|
|
|
|
+ font-weight: 300;
|
|
|
|
|
+ letter-spacing: 0.05em;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.login-r {
|
|
.login-r {
|
|
|
- width: 36.25rem;
|
|
|
|
|
- background: #fff;
|
|
|
|
|
- padding: 0 6.25rem;
|
|
|
|
|
|
|
+ flex: 1;
|
|
|
|
|
+ background: rgba(255,255,255,0.95);
|
|
|
|
|
+ backdrop-filter: blur(20px);
|
|
|
|
|
+ padding: 3rem;
|
|
|
display: flex;
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
flex-direction: column;
|
|
|
justify-content: center;
|
|
justify-content: center;
|
|
|
|
|
+ position: relative;
|
|
|
|
|
|
|
|
|
|
+ .custom-input.v-text-field .v-input__control .v-field__field .v-field__input{
|
|
|
|
|
+ border: none;
|
|
|
|
|
+ background-color: transparent;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
.mk--title{
|
|
.mk--title{
|
|
|
- font-size:35px;
|
|
|
|
|
|
|
+ font-size: 35px;
|
|
|
font-weight: 900;
|
|
font-weight: 900;
|
|
|
- margin-bottom:45px;
|
|
|
|
|
|
|
+ margin-bottom: 45px;
|
|
|
|
|
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
|
|
|
+ -webkit-background-clip: text;
|
|
|
|
|
+ background-clip: text;
|
|
|
|
|
+ -webkit-text-fill-color: transparent;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.tit-login {
|
|
.tit-login {
|
|
|
- display: flex;
|
|
|
|
|
- justify-content: space-between;
|
|
|
|
|
- align-items: center;
|
|
|
|
|
- margin-bottom: 1.88rem;
|
|
|
|
|
|
|
+ margin-bottom: 2rem;
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
|
|
|
- > span{
|
|
|
|
|
- font-size: 14px;
|
|
|
|
|
- font-weight: bold;
|
|
|
|
|
- i{
|
|
|
|
|
- color:red;
|
|
|
|
|
- font-style: normal;
|
|
|
|
|
- margin-right: 3px;
|
|
|
|
|
- position: relative;
|
|
|
|
|
- top:2px;
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
strong {
|
|
strong {
|
|
|
- color: #333;
|
|
|
|
|
- font-size: 1.38rem;
|
|
|
|
|
|
|
+ color: #2d3748;
|
|
|
|
|
+ font-size: 2rem;
|
|
|
font-weight: 700;
|
|
font-weight: 700;
|
|
|
- line-height: 1.38rem;
|
|
|
|
|
- display: block;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- .lang-set {
|
|
|
|
|
- width: 6.00rem;
|
|
|
|
|
-
|
|
|
|
|
- .custom-select {
|
|
|
|
|
- width: 6.00rem;
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
|
|
|
+ -webkit-background-clip: text;
|
|
|
|
|
+ background-clip: text;
|
|
|
|
|
+ -webkit-text-fill-color: transparent;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.login-input-wrap {
|
|
.login-input-wrap {
|
|
|
- width: 100%;
|
|
|
|
|
|
|
+ margin-bottom: 1.5rem;
|
|
|
|
|
|
|
|
.txt-field-box {
|
|
.txt-field-box {
|
|
|
- margin-bottom: 0.63rem;
|
|
|
|
|
- &:first-of-type {
|
|
|
|
|
- margin-bottom: 0.63rem;
|
|
|
|
|
|
|
+ margin-bottom: 1rem;
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+
|
|
|
|
|
+ .custom-input {
|
|
|
|
|
+ .v-input__control {
|
|
|
|
|
+ .v-field {
|
|
|
|
|
+ background: rgba(255,255,255,0.8);
|
|
|
|
|
+ backdrop-filter: blur(10px);
|
|
|
|
|
+ border: 2px solid rgba(102, 126, 234, 0.2);
|
|
|
|
|
+ border-radius: 12px;
|
|
|
|
|
+ transition: all 0.3s ease;
|
|
|
|
|
+
|
|
|
|
|
+ &:hover {
|
|
|
|
|
+ border-color: rgba(102, 126, 234, 0.4);
|
|
|
|
|
+ background: rgba(255,255,255,0.9);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ &.v-field--focused {
|
|
|
|
|
+ border-color: #667eea;
|
|
|
|
|
+ box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .ico {
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ left: 15px;
|
|
|
|
|
+ top: 50%;
|
|
|
|
|
+ transform: translateY(-50%);
|
|
|
|
|
+ width: 20px;
|
|
|
|
|
+ height: 20px;
|
|
|
|
|
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
|
|
|
+ border-radius: 50%;
|
|
|
|
|
+ z-index: 10;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .ico-eye {
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ right: 15px;
|
|
|
|
|
+ top: 50%;
|
|
|
|
|
+ transform: translateY(-50%);
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+ color: #667eea;
|
|
|
|
|
+ font-size: 1.2rem;
|
|
|
|
|
+ z-index: 10;
|
|
|
|
|
+ transition: all 0.3s ease;
|
|
|
|
|
+
|
|
|
|
|
+ &:hover {
|
|
|
|
|
+ color: #764ba2;
|
|
|
|
|
+ transform: translateY(-50%) scale(1.1);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- .login-radio {
|
|
|
|
|
- margin-top: 1.25rem;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- .login-otp {
|
|
|
|
|
- display: flex;
|
|
|
|
|
- gap: 0.63rem;
|
|
|
|
|
- margin-top: 1.25rem;
|
|
|
|
|
-
|
|
|
|
|
- .txt-field-box {
|
|
|
|
|
|
|
+ .login-btn-wrap {
|
|
|
|
|
+ margin-bottom: 1.5rem;
|
|
|
|
|
+
|
|
|
|
|
+ .custom-btn {
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
|
|
+ height: 50px;
|
|
|
|
|
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
|
|
|
+ border: none;
|
|
|
|
|
+ border-radius: 12px;
|
|
|
|
|
+ color: white;
|
|
|
|
|
+ font-size: 1.1rem;
|
|
|
|
|
+ font-weight: 600;
|
|
|
|
|
+ letter-spacing: 0.05em;
|
|
|
|
|
+ box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
|
|
|
|
|
+ transition: all 0.3s ease;
|
|
|
|
|
+
|
|
|
|
|
+ &:hover {
|
|
|
|
|
+ transform: translateY(-2px);
|
|
|
|
|
+ box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ &:active {
|
|
|
|
|
+ transform: translateY(0);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
- .btn-blue-bor {
|
|
|
|
|
- width: 8.31rem;
|
|
|
|
|
- height: 3.63rem;
|
|
|
|
|
- flex-shrink: 0;
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- .login-btn-wrap {
|
|
|
|
|
- margin-top: 1.88rem;
|
|
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
- .login-chk {
|
|
|
|
|
- margin: 1.25rem 0 0;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- .login-find {
|
|
|
|
|
|
|
+
|
|
|
|
|
+ .join--btn--wrap {
|
|
|
display: flex;
|
|
display: flex;
|
|
|
- align-items: center;
|
|
|
|
|
- margin-top: 2.19rem;
|
|
|
|
|
- padding-top: 2.19rem;
|
|
|
|
|
- border-top: 0.06rem solid #EEEEEE;
|
|
|
|
|
justify-content: center;
|
|
justify-content: center;
|
|
|
-
|
|
|
|
|
- button {
|
|
|
|
|
- display: flex;
|
|
|
|
|
- align-items: center;
|
|
|
|
|
- font-size: 0.88rem;
|
|
|
|
|
- font-weight: 400;
|
|
|
|
|
- color: #333;
|
|
|
|
|
-
|
|
|
|
|
- &.blue-color {
|
|
|
|
|
- &:after {
|
|
|
|
|
- display: inline-block;
|
|
|
|
|
- background: #E3E3E3;
|
|
|
|
|
- width: 0.06rem;
|
|
|
|
|
- height: 1rem;
|
|
|
|
|
- content: "";
|
|
|
|
|
- margin: 0 1rem;
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ gap: 1rem;
|
|
|
|
|
+ margin-bottom: 1.5rem;
|
|
|
|
|
+
|
|
|
|
|
+ .text--btn {
|
|
|
|
|
+ background: none;
|
|
|
|
|
+ border: none;
|
|
|
|
|
+ color: #667eea;
|
|
|
|
|
+ font-size: 0.9rem;
|
|
|
|
|
+ font-weight: 500;
|
|
|
|
|
+ padding: 0.5rem 1rem;
|
|
|
|
|
+ border-radius: 8px;
|
|
|
|
|
+ transition: all 0.3s ease;
|
|
|
|
|
+
|
|
|
|
|
+ &:hover {
|
|
|
|
|
+ background: rgba(102, 126, 234, 0.1);
|
|
|
|
|
+ color: #764ba2;
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
- &.blue-color {
|
|
|
|
|
- color: #034EA2;
|
|
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .short--login--wrap {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ justify-content: center;
|
|
|
|
|
+ gap: 1rem;
|
|
|
|
|
+ padding-top: 1.5rem;
|
|
|
|
|
+ border-top: 1px solid rgba(102, 126, 234, 0.2);
|
|
|
|
|
+
|
|
|
|
|
+ .btn--google,
|
|
|
|
|
+ .btn--kakao,
|
|
|
|
|
+ .btn--naver {
|
|
|
|
|
+ width: 50px;
|
|
|
|
|
+ height: 50px;
|
|
|
|
|
+ border-radius: 50%;
|
|
|
|
|
+ border: 2px solid rgba(102, 126, 234, 0.2);
|
|
|
|
|
+ background-color: white;
|
|
|
|
|
+ transition: all 0.3s ease;
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+
|
|
|
|
|
+ &:hover {
|
|
|
|
|
+ transform: translateY(-2px);
|
|
|
|
|
+ box-shadow: 0 8px 25px rgba(0,0,0,0.1);
|
|
|
|
|
+ border-color: #667eea;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
@@ -3683,31 +3908,31 @@ p.success-txt {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.login-footer {
|
|
.login-footer {
|
|
|
- position: fixed;
|
|
|
|
|
|
|
+ position: absolute;
|
|
|
bottom: 0;
|
|
bottom: 0;
|
|
|
left: 0;
|
|
left: 0;
|
|
|
right: 0;
|
|
right: 0;
|
|
|
- width: 100%;
|
|
|
|
|
- background: #fff;
|
|
|
|
|
|
|
+ height: 60px;
|
|
|
|
|
+ background: rgba(255,255,255,0.1);
|
|
|
|
|
+ backdrop-filter: blur(20px);
|
|
|
|
|
+ border-top: 1px solid rgba(255,255,255,0.1);
|
|
|
display: flex;
|
|
display: flex;
|
|
|
- justify-content: flex-end;
|
|
|
|
|
align-items: center;
|
|
align-items: center;
|
|
|
- height: 3.63rem;
|
|
|
|
|
- padding: 0 1.88rem;
|
|
|
|
|
-
|
|
|
|
|
- p {
|
|
|
|
|
- color: #333333;
|
|
|
|
|
- opacity: 0.8;
|
|
|
|
|
- font-size: 0.69rem;
|
|
|
|
|
- font-weight: 400;
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ justify-content: space-between;
|
|
|
|
|
+ padding: 0 2rem;
|
|
|
|
|
+ z-index: 100;
|
|
|
|
|
|
|
|
- .logo {
|
|
|
|
|
- margin-left: 4.38rem;
|
|
|
|
|
- width: 8.19rem;
|
|
|
|
|
- height: 1.44rem;
|
|
|
|
|
- background: url("../img/logo_foot.svg") no-repeat center / 100%;
|
|
|
|
|
- font-size: 0;
|
|
|
|
|
|
|
+ .login--footer--l {
|
|
|
|
|
+ p {
|
|
|
|
|
+ color: rgba(255,255,255,0.8);
|
|
|
|
|
+ font-size: 0.8rem;
|
|
|
|
|
+ margin: 0;
|
|
|
|
|
+
|
|
|
|
|
+ &:first-child {
|
|
|
|
|
+ font-weight: 500;
|
|
|
|
|
+ margin-bottom: 0.25rem;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|