@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html,body{
    display: grid;
    height: 100vh;
    width: 100%;
    place-items: center;
    background: linear-gradient(to right, #99004D 0%,#ff0080 100%);
}
.container{
    background: #fff;
    max-width: 350px;
    width: 100%;
    padding: 25px 30px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0,0, 0, 0.15);
}
.container form .title{
    font-size: 30px;
    font-weight: 600;
    margin: 20px 0 10px 0;
    position: relative;
}
.container form .title::before{
    content: '';
    position: absolute;
    height: 4px;
    width: 33px;
    bottom: 3px;
    left: 0;
    border-radius:5px;
    background: linear-gradient(to right, #99004D 0%,#ff0080 100%);


}

.container form .input-box{
    width: 100%;
    height: 45px;
    margin-top: 25px;
    position: relative;

}
.container form .input-box input{
    height: 100%;
    width: 100%;
    outline: none;
    font-size: 16px;
    border: none;
    font-size: 16px;
}
.container form .underline:before{
    position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    background: #ccc;
    left: 0;
    bottom: 0;
}
.container form .underline:after{
    position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    left: 0;
    bottom: 0;
    background: linear-gradient(to right, #99004D 0%,#ff0080 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.3s ease;
}
.container form .input-box input:focus ~ .underline:after,
.container form .input-box input:valid ~ .underline:after{
    transform: scaleX(1); 
    transform-origin: left;
}

.container form .button{
    margin: 40px 0 20px 0;
}
.container form .input-box input[type="submit"]{
    font-size: 17px;
    color:  #fff;
    border-radius:5px;
    cursor: pointer;
    background: linear-gradient(to right, #99004D 0%,#ff0080 100% );
     transition: all 0.3s ease;
}
.container form .input-box input[type="submit"]:hover{
    letter-spacing: 1px;
    background: linear-gradient(to left, #99004D 0%,#ff0080 100% );
}
.container .option{
    font-size: 14px;
    text-align: center;
}
.container .twitter a,
.container .facebook a{
    display: block;
    width: 100%;
    height: 45px;
    font-size: 15px;
    text-decoration: none;
    padding-left: 20px;
    color: #fff;
    line-height: 45px;
    border-radius: 5px;
}
.container .twitter i,
.container .facebook i{
padding-right: 12px;
font-size: 20px;
}

.container .twitter a{  
    margin: 20px 0 15px 0;
    background: linear-gradient(to left, #00acee 0%,#1abeff 100% );
}
.container .twitter a:hover{  
    margin: 20px 0 15px 0;
    background: linear-gradient(to right, #00acee 0%,#1abeff 100% );
}

.container .facebook a{
    margin: 20px 0 50px 0;
    background: linear-gradient(to left, #3b5998 0%,#476bb8 100% );
}
.container .facebook a:hover{
    background: linear-gradient(to right, #3b5998 0%,#476bb8 100% );
}

.vault-container {
  max-width: 450px;
}

.vault-title {
  font-size: 24px;
}

.welcome-user {
  margin-top: 10px;
  color: #555;
  font-size: 14px;
}

.textarea-box {
  height: auto !important;
}

.textarea-box textarea {
  width: 100%;
  height: 100px;
  margin-top: 15px;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 5px;
  resize: none;
  font-size: 14px;
  outline: none;
  font-family: 'Poppins', sans-serif;
}

.textarea-box textarea:focus {
  border-color: #ff0080;
}

.secret-display {
  margin-top: 20px;
  padding: 15px;
  background: #f9f9f9;
  border-left: 4px solid #ff0080;
  border-radius: 4px;
  word-break: break-word;
}

.secret-display p {
  margin-top: 5px;
  color: #333;
}

.delete-btn {
  margin-top: 10px;
  background: #99004D;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.delete-btn:hover {
  background: #77003c;
}

.logout-btn {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: #99004D;
  text-decoration: none;
  font-weight: 500;
}


.hidden {
  display: none;
}


.password-box {
  position: relative;
}

.password-box i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
  cursor: pointer;
  font-size: 16px;
  z-index: 10;
}

.password-box i:hover {
  color: #ff0080;
}
.intro{
  color: #5e6d09;
  width: 100%;
  resize: none;
  font-size: 14px;
  outline: none;
  font-family: 'Poppins', sans-serif;
}

.forgot-pass {
  margin-top: 10px;
  text-align: right;
}

.forgot-pass a {
  color: #666;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-pass a:hover {
  color: #ff0080;
  text-decoration: underline;
}